diff --git a/src/Vogen/Generators/StructGenerator.cs b/src/Vogen/Generators/StructGenerator.cs index bb66c744f6..be41acaa9c 100644 --- a/src/Vogen/Generators/StructGenerator.cs +++ b/src/Vogen/Generators/StructGenerator.cs @@ -101,7 +101,7 @@ public readonly {itemUnderlyingType} Value }} {GenerateEqualsMethodsAndOperators.GenerateEqualsMethodsForAStruct(item, tds)} - public static global::System.Boolean operator ==({structName} left, {structName} right) => Equals(left, right); + public static global::System.Boolean operator ==({structName} left, {structName} right) => left.Equals(right); public static global::System.Boolean operator !=({structName} left, {structName} right) => !(left == right); {GenerateEqualsMethodsAndOperators.GenerateEqualsOperatorsForPrimitivesIfNeeded(itemUnderlyingType, structName, item)} diff --git a/tests/SnapshotTests/BsonSerializationGeneration/snapshots/snap-v8.0/BsonSerializationGenerationTests.Writes_bson_serializers.verified.txt b/tests/SnapshotTests/BsonSerializationGeneration/snapshots/snap-v8.0/BsonSerializationGenerationTests.Writes_bson_serializers.verified.txt index 4b93b360b8..a6c940d735 100644 --- a/tests/SnapshotTests/BsonSerializationGeneration/snapshots/snap-v8.0/BsonSerializationGenerationTests.Writes_bson_serializers.verified.txt +++ b/tests/SnapshotTests/BsonSerializationGeneration/snapshots/snap-v8.0/BsonSerializationGenerationTests.Writes_bson_serializers.verified.txt @@ -325,7 +325,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Age && Equals((Age)obj); } - public static global::System.Boolean operator ==(Age left, Age right) => Equals(left, right); + public static global::System.Boolean operator ==(Age left, Age right) => left.Equals(right); public static global::System.Boolean operator !=(Age left, Age right) => !(left == right); public static global::System.Boolean operator ==(Age left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Age left, System.Int32 right) => !Equals(left.Value, right); @@ -838,7 +838,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Name && Equals((Name)obj); } - public static global::System.Boolean operator ==(Name left, Name right) => Equals(left, right); + public static global::System.Boolean operator ==(Name left, Name right) => left.Equals(right); public static global::System.Boolean operator !=(Name left, Name right) => !(left == right); public static global::System.Boolean operator ==(Name left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Name left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt index 134399a853..17b4eb4a0a 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt index 07cce9a133..5771faed39 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt index d3c8002c29..5043eaf3d6 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v3.1/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -191,7 +191,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt index 07ab34bbc7..09af22c4f3 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt index 4ad0b314a5..765cb278e4 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt index 6d698b079f..d98810ed6c 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -191,7 +191,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug597_STJ_being_emitted_even_with_no_conversions_specified.Omitted_if_stj_package_not_referenced.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug597_STJ_being_emitted_even_with_no_conversions_specified.Omitted_if_stj_package_not_referenced.verified.txt index 18779b0698..edcc2d739a 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug597_STJ_being_emitted_even_with_no_conversions_specified.Omitted_if_stj_package_not_referenced.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.6.1/Bug597_STJ_being_emitted_even_with_no_conversions_specified.Omitted_if_stj_package_not_referenced.verified.txt @@ -148,7 +148,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt index 9f0bf58586..136efb0040 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt index 4ad0b314a5..765cb278e4 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt index 3c43587c11..21a5fee4c8 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v4.8/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -191,7 +191,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt index 134399a853..17b4eb4a0a 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt index 07cce9a133..5771faed39 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt index d3c8002c29..5043eaf3d6 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v5.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -191,7 +191,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt index 134399a853..17b4eb4a0a 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt index 07cce9a133..5771faed39 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt index d3c8002c29..5043eaf3d6 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v6.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -191,7 +191,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt index c57f447b9a..d364bbbb65 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt index c75a1e1b78..52ea1693c6 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt index 6aad0774ac..216953d0c0 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v7.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -191,7 +191,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt index e118b7e9bf..ac4c9e732f 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug575_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt index c75a1e1b78..52ea1693c6 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug581_StjDeserializer_throws_correct_exception.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug589_Vogen_does_not_ignore_irrelevant_assembly_attributes.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug589_Vogen_does_not_ignore_irrelevant_assembly_attributes.Test.verified.txt index 6fe42a1fee..0052967114 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug589_Vogen_does_not_ignore_irrelevant_assembly_attributes.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug589_Vogen_does_not_ignore_irrelevant_assembly_attributes.Test.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt index 99ff00480f..c5f6a91e66 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug595_AttributesWithArraysBreaksGenerator.Test.verified.txt @@ -191,7 +191,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug625_EFCoreConverters_uses_wrong_marker_interface_name.A_marker_interface_not_named_EfCoreConverters_is_still_referenced_and_that_name_is_used_in_the_generated_code.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug625_EFCoreConverters_uses_wrong_marker_interface_name.A_marker_interface_not_named_EfCoreConverters_is_still_referenced_and_that_name_is_used_in_the_generated_code.verified.txt index 6654955872..1c7cd5f1ac 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug625_EFCoreConverters_uses_wrong_marker_interface_name.A_marker_interface_not_named_EfCoreConverters_is_still_referenced_and_that_name_is_used_in_the_generated_code.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-v8.0/Bug625_EFCoreConverters_uses_wrong_marker_interface_name.A_marker_interface_not_named_EfCoreConverters_is_still_referenced_and_that_name_is_used_in_the_generated_code.verified.txt @@ -427,7 +427,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is HireDate && Equals((HireDate)obj); } - public static global::System.Boolean operator ==(HireDate left, HireDate right) => Equals(left, right); + public static global::System.Boolean operator ==(HireDate left, HireDate right) => left.Equals(right); public static global::System.Boolean operator !=(HireDate left, HireDate right) => !(left == right); public static global::System.Boolean operator ==(HireDate left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(HireDate left, System.DateTime right) => !Equals(left.Value, right); @@ -908,7 +908,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Name && Equals((Name)obj); } - public static global::System.Boolean operator ==(Name left, Name right) => Equals(left, right); + public static global::System.Boolean operator ==(Name left, Name right) => left.Equals(right); public static global::System.Boolean operator !=(Name left, Name right) => !(left == right); public static global::System.Boolean operator ==(Name left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Name left, System.String right) => !Equals(left.Value, right); @@ -1206,7 +1206,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Age && Equals((Age)obj); } - public static global::System.Boolean operator ==(Age left, Age right) => Equals(left, right); + public static global::System.Boolean operator ==(Age left, Age right) => left.Equals(right); public static global::System.Boolean operator !=(Age left, Age right) => !(left == right); public static global::System.Boolean operator ==(Age left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Age left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug604_Swashbuckle_has_missing_namespaces_for_the_vo.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug604_Swashbuckle_has_missing_namespaces_for_the_vo.Test.verified.txt index 49541d2ec4..d1b4880445 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug604_Swashbuckle_has_missing_namespaces_for_the_vo.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug604_Swashbuckle_has_missing_namespaces_for_the_vo.Test.verified.txt @@ -230,7 +230,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug608_swashbuckle_mappingTests.Used_to_treat_non_primitives_as_objects_but_now_treats_IParsable_as_strings.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug608_swashbuckle_mappingTests.Used_to_treat_non_primitives_as_objects_but_now_treats_IParsable_as_strings.verified.txt index c851a707b7..3eabe6cd44 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug608_swashbuckle_mappingTests.Used_to_treat_non_primitives_as_objects_but_now_treats_IParsable_as_strings.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug608_swashbuckle_mappingTests.Used_to_treat_non_primitives_as_objects_but_now_treats_IParsable_as_strings.verified.txt @@ -230,7 +230,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_global_config_should_not_write_a_primitive_cast_to_wrapper.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_global_config_should_not_write_a_primitive_cast_to_wrapper.verified.txt index 2fc7a495f1..6879ca3ccf 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_global_config_should_not_write_a_primitive_cast_to_wrapper.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_global_config_should_not_write_a_primitive_cast_to_wrapper.verified.txt @@ -309,7 +309,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_value_object_config_should_write_a_primitive_cast.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_value_object_config_should_write_a_primitive_cast.verified.txt index 36ca54cceb..ed63d7a07d 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_value_object_config_should_write_a_primitive_cast.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_value_object_config_should_write_a_primitive_cast.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo && Equals((Vo)obj); } - public static global::System.Boolean operator ==(Vo left, Vo right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo left, Vo right) => left.Equals(right); public static global::System.Boolean operator !=(Vo left, Vo right) => !(left == right); public static global::System.Boolean operator ==(Vo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt index fe090ca7ec..a6a40978f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt index 7ed14598f1..f737724244 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt index b9d2cfc642..3fcbda77c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt index 64f0734d43..777739ae9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt index d0e5e72cf1..a7b69ef6a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt index 1c6645086f..115d7a895b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt index 35a5e89304..1b939f7323 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt index 6a6064b921..832ed094b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt index 50356f16af..8060e0ce1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt index 2f066453e5..2ac1cc678d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt index f221d8fd95..cbacce5eca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt index 2de779d724..9d3bfa1b60 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt index b201ab4fa4..95903c7d74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt index 9d3faef6be..cfd3f4802e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt index 322ec96628..6db1e602aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt index f62bb88522..28e9ca4a16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt index c9fed419b7..a97779aee7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt index 0401ae9eb3..d70eb2ac52 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt index c35abb9cf4..cf37859a1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt index b347cff183..8b15ba5069 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt index 8527f46115..57637cfd9e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt index 6a3c91301d..b6f5eefb71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt index 031f03666e..4912a123e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt index af72bc301e..1823e02934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt index 53e6960a01..59ee98d74a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt index 2ab17d31ae..a00570c2b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt index 3327175f25..59eb2b3e3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt index 50b2023747..c7757ff553 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt index 2c31796bef..43eaa290bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt index 655336ea9e..d553001d3f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt index d63a4de74a..7f4fa79074 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt index 62aae92969..731bef4b40 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt index 2a718cfcc1..7fb36653ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt index 166ccda341..7352c159f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt index ef57a549a0..c20f49acc5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt index fed68e627a..a5bb7cbd9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt index cb1fac193e..e8c4f884bf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt index 45bdbd52d1..551985f4c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt index c802031b32..6628e276dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt index a23a17ea57..3b4ff0779c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt index 53cc947e28..51f5e66339 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt index 50fb89a635..a2ad670082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt index 6bc4fbf1cc..d5ad36b27a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt index 0fca8a4fc0..7f1a4c9894 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt index 947b381929..1df52c5979 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt index 9df48e417b..cee6c4e452 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt index 2d2ee6d560..e307eaca2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt index 935a94c234..40c1cd604a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt index 1afb89d6a5..84c537fdcb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt index 819c0e361d..d1fb038be3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt index 33e2390cc6..c6352b3346 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt index 41c256fbf1..39db5da00b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt index 68871feac9..b94aa378de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt index 69f6b032e3..580d89af73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt index 4c236b9d97..6ef7e58875 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt index ae7bcef487..7a1191debe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt index 9b5408f03b..23f11aa976 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt index 232ef93296..f289df8e5f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt index 059bf64e83..1069b68409 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt index f5f8194fd5..08a7722d2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt index 635d50551c..3086037aa1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt index 76d9c6cf39..5f8cb0e02c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt index 5172b47797..5819461e8b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt index 46159e6989..0adbc29ad1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt index a8a6d9bd5e..baa7561652 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt index 581fe0c4fb..05ce745a83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt index 6ef290f2cf..0bc52007bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt index 5993455cd4..bfb3299d42 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt index a52944fff5..5f1a4d9179 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt index 2c51c05aff..1c2bdefd70 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt index 4590729110..644cd141aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt index 567e6afa2a..fd2f0fa871 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt index 5c3562dc5a..bfcf2d852b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt index 4a1309a578..efc56831ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt index 44d14baf36..fe2597e0d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt index a135b0c16e..063b8cad6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt index 03f782ed64..7201d5e958 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt index e150c64637..a9fa7d6e9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt index dc018396e3..1b3dfc0ee5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt index df8d1dd9f1..2d9fffa9f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt index 96d1fab7bb..04a1bd1a9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt index 53809f62a5..49ddb80cd3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt index 92dff3b307..67aa5eec16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt index df9abbeb97..5070da426a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt index 57686bb650..a00e266f7d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt index abc7fa4335..ad02d82fb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt index 086f86b4f0..99a18d236c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt index 1b84f1b0e5..0baff1b2f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt index d80ae1217f..b2f2a4d39c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt index 03ea6fd3c1..1c381a25a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt index 27e86b3237..9fc510982a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt index 80f67f98ca..3d05544669 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt index f86618b42e..f18a4f063f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt index 25b613e8d3..c6f852cdd5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt index 5992e7c3a9..78ac441301 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt index 3e4067fbd6..b353dbc27f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt index d3efd1dc9f..f90e959e35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt index fe3538a85a..8243d52415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt index 4b478801c3..d09319bdda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt index ad3f89e6e8..bd6750ba58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt index f888064ed6..2ab25bac27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt index 2ea7952b4a..b02ff5433d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt index 895db26a5e..22f3184ca9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt index 0c770b473e..a1bd8c6a56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt index e345749d3b..e645957907 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt index 1ce5a7fddc..47c7752105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt index 8f51672035..06114e6264 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt index 20323ca202..0398457c17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt index e77f9212c5..7106b78628 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt index 6c71814ad1..966adbb6f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt index e4807f1951..7ed3ede3f5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt index 777d84149a..256620c88b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt index 8c8baa9639..4bcfc072ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt index bda1362424..3badd6c266 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt index 2e6b3977e7..d861b93321 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt index 3c4b7420ca..de916a837e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt index a11139a75e..7efa2af902 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt index 76d4cee311..d0337545ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt index d040e4dded..d6ef7b9524 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt index 4c0364513a..27a23d2f6d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt index 98e2df02bd..d89fc51b0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt index 39096a60c8..544d9defe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt index c27e03a689..64b9dc3507 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt index c0e5a72b61..a3df612a46 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt index 537f0dc3c2..d06bd04004 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt index 2c19dd6316..a30932af57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt index 3237e3310f..6f2acb5122 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt index 587a1adc89..634cf9339e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt index f1421306b7..ad227b534b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt index 413f85f7d7..78880109e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt index 82693d0cc2..05fca4a2f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt index 53faee448e..c7c3fc3a80 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt index 37c121783d..c58ee68193 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt index 8e0bd33a9e..3e39a7efa9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt index cdd6cd93aa..0efa7782e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt index d095a30ea4..2e03ef9959 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt index 22420354d1..6cec82833d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt index 4b716bbd69..e49cb0bd5b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt index d5ff7d1928..3e7467fb8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt index 1223dbb0fc..fec7c29b74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt index 615a9185ab..cfb392527f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt index d7e17cce1c..21883227dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt index f74ce5c98f..74d47121cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt index a8f58bc93e..b4bbfb87da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt index 6ea186a3ab..85767a922f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt index 59a8cebda0..671168251e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt index 928419101a..cd48e673d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt index d03b9b654d..ff99c50e0a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt index 5dfd2790f1..249f2687e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt index dfd4bc8c1e..bf5fad6d2f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt index 894c3002e3..517ad96325 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt index 0054fb10ad..d3b7eceae6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt index c17acf7553..0777e73080 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt index 782c6ef289..33d8f6ceca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt index 60ec2f5b2c..b2f7599fda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt index e47b435561..bcc3f34c2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt index 40779e7b09..2dd58c64e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt index 82dee63959..465b33658d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt index 9be84ab991..9187df561b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt index 684258c0ed..c311860e48 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt index 1ee4105bad..4a9d4190a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt index af39917945..44f22055dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt index 0931c93dc0..0f98aa0cd8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt index 65554ae714..a1981cdab9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt index 0ff0cd231c..0ed1ba97be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt index b04b8892b9..032b46df11 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt index 0afc8e816d..9a537b8c9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt index 4d23d90255..f3e900ca72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt index 8a0b25bcb1..b475208415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt index e173ceaf10..36494ddd78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt index b38c1645d1..12eacd1e08 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt index 7f1ac40808..cb1d382544 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt index 63a380d71f..4e8f7173cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt index 511316fe86..1d1313f54c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt index 9d76e1a89e..7007d58e06 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt index daecf9b41d..d280310b62 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt index 447c4c7032..1ccc6b3407 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt index fe57003c24..147ed86ecd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt index c27fb5a7d1..c1e80295bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt index 6e7770dc6e..7ef0e35606 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt index 6459193eea..a87c616a21 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt index 174da9a421..7c2b894abc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt index b76a46b51a..52d0052a43 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt index f7c027dcf5..5a0a6ab105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt index 7dd5844498..0f59d91033 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt index daf8ac9426..12afd564a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt index 4f42bf5c54..da34e35aca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt index ac75b3e2d3..422288915d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt index 933e41f385..46f05a9ae3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt index 8e7bfd18e1..4e61e0910e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt index c00ab66882..b6fce40a03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt index 48dd92768e..3c5d443d47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt index 23cbbf88c8..f71121ca5c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt index ee330ebae9..9df018c9e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt index b79172090f..9072739f25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt index 3940312fef..0df3c5e876 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt index b7064185bb..07580369f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt index d2e264d6cf..d36db2e554 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt index a4d4e904d9..3ffb2c5395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt index abc7731cf5..d97afe19be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt index 363e6db013..d5829844cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt index 1c7d7d0683..bbfa5eccac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt index b72e281e87..06965640db 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt index 3d121abe8e..e6ede0c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt index 2f09e739a2..a58159562c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt index a58dceba78..e6c88803b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt index a7c3f0e54b..cc9682de1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt index 769c3c87ca..0f2a1fd739 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt index cf53fc59e4..5f1357d807 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt index be014bcbf1..7afb43097c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt index ac4c280c16..6a3efdda3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt index 4d57790750..96d0e667aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt index 3f8399035c..e2555df35e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt index 48a7cf841b..170c51c598 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt index 93ac1b946e..0ba81b4ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt index a80e2e5940..8d5d084136 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt index 203b87cafc..5fc2e84382 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt index a0ed5beabb..ab34f372f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt index 0eac51df19..c8f4130f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt index 705fccaae8..033d2b7941 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt index e60e621047..34750068d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt index 55b939619e..3a590a87ed 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt index e53f195d09..cd991108d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt index 18a2a21009..579cd059c7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt index 82c082e019..77be686643 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt index 8c84394d9a..75ddbb0faa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt index acecec40d2..d2ba773019 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt index f196491e20..9dcbbe37e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt index 022b1dfe99..3f74030d8f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt index a60e7ae871..59424c78c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt index 5d979ec64d..a9051f551f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt index 7eb8d739c4..e1f50ed978 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt index 0efd4775e3..364650af83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt index 8c582ba4ee..181e9a0d03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt index a16b0e8e66..30435dc1da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt index 6c8374d2d3..466bdebdab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt index f5ce1e4155..09cedd8d91 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt index 5999d71073..ac0c09d41b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt index 689978f278..e1afca9e25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt index da50ccc180..e206ac1758 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt index d81d6ff618..7173816564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt index cd382811cb..02f1a4f1eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt index 21350333f3..d80a2efebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt index 8d65db2adb..828ee3bb9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt index 7ec3478439..68cad9ba4c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt index 2e51bb7cdc..99c4862f96 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt index 9088c3b2bb..5435bad811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt index e3f53df2ee..ba97b07c4a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt index b32e5c1371..86888ff699 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt index e9267dcce0..eddfce6297 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt index 8b48b420e4..411fbf99bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt index a611f18e26..97f2974ad5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt index fe090ca7ec..a6a40978f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt index 7ed14598f1..f737724244 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt index b9d2cfc642..3fcbda77c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt index 64f0734d43..777739ae9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt index d0e5e72cf1..a7b69ef6a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt index 1c6645086f..115d7a895b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt index 35a5e89304..1b939f7323 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt index 6a6064b921..832ed094b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt index 50356f16af..8060e0ce1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt index 2f066453e5..2ac1cc678d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt index f221d8fd95..cbacce5eca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt index 2de779d724..9d3bfa1b60 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt index b201ab4fa4..95903c7d74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt index 9d3faef6be..cfd3f4802e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt index 322ec96628..6db1e602aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt index f62bb88522..28e9ca4a16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt index c9fed419b7..a97779aee7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt index 0401ae9eb3..d70eb2ac52 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt index c35abb9cf4..cf37859a1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt index b347cff183..8b15ba5069 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt index 8527f46115..57637cfd9e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt index 6a3c91301d..b6f5eefb71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt index 031f03666e..4912a123e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt index af72bc301e..1823e02934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt index 53e6960a01..59ee98d74a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt index 2ab17d31ae..a00570c2b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt index 3327175f25..59eb2b3e3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt index 50b2023747..c7757ff553 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt index 2c31796bef..43eaa290bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt index 655336ea9e..d553001d3f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt index d63a4de74a..7f4fa79074 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt index 62aae92969..731bef4b40 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt index 2a718cfcc1..7fb36653ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt index 166ccda341..7352c159f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt index ef57a549a0..c20f49acc5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt index fed68e627a..a5bb7cbd9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt index cb1fac193e..e8c4f884bf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt index 45bdbd52d1..551985f4c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt index c802031b32..6628e276dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt index a23a17ea57..3b4ff0779c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt index 53cc947e28..51f5e66339 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt index 50fb89a635..a2ad670082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt index 6bc4fbf1cc..d5ad36b27a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt index 0fca8a4fc0..7f1a4c9894 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt index 947b381929..1df52c5979 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt index 9df48e417b..cee6c4e452 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt index 2d2ee6d560..e307eaca2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt index 935a94c234..40c1cd604a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt index 1afb89d6a5..84c537fdcb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt index 819c0e361d..d1fb038be3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt index 33e2390cc6..c6352b3346 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt index 41c256fbf1..39db5da00b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt index 68871feac9..b94aa378de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt index 69f6b032e3..580d89af73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt index 4c236b9d97..6ef7e58875 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt index ae7bcef487..7a1191debe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt index 9b5408f03b..23f11aa976 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt index 232ef93296..f289df8e5f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt index 059bf64e83..1069b68409 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt index f5f8194fd5..08a7722d2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt index 635d50551c..3086037aa1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt index 76d9c6cf39..5f8cb0e02c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt index 5172b47797..5819461e8b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt index 46159e6989..0adbc29ad1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt index a8a6d9bd5e..baa7561652 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt index 581fe0c4fb..05ce745a83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt index 6ef290f2cf..0bc52007bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt index 5993455cd4..bfb3299d42 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt index a52944fff5..5f1a4d9179 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt index 2c51c05aff..1c2bdefd70 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt index 4590729110..644cd141aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt index 567e6afa2a..fd2f0fa871 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt index 5c3562dc5a..bfcf2d852b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt index 4a1309a578..efc56831ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt index 44d14baf36..fe2597e0d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt index a135b0c16e..063b8cad6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt index 03f782ed64..7201d5e958 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt index e150c64637..a9fa7d6e9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt index dc018396e3..1b3dfc0ee5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt index df8d1dd9f1..2d9fffa9f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt index 96d1fab7bb..04a1bd1a9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt index 53809f62a5..49ddb80cd3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt index 92dff3b307..67aa5eec16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt index df9abbeb97..5070da426a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt index 57686bb650..a00e266f7d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt index abc7fa4335..ad02d82fb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt index 086f86b4f0..99a18d236c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt index 1b84f1b0e5..0baff1b2f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt index d80ae1217f..b2f2a4d39c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt index 03ea6fd3c1..1c381a25a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt index 27e86b3237..9fc510982a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt index 80f67f98ca..3d05544669 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt index f86618b42e..f18a4f063f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt index 25b613e8d3..c6f852cdd5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt index 5992e7c3a9..78ac441301 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt index 3e4067fbd6..b353dbc27f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt index d3efd1dc9f..f90e959e35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt index fe3538a85a..8243d52415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt index 4b478801c3..d09319bdda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt index ad3f89e6e8..bd6750ba58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt index f888064ed6..2ab25bac27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt index 2ea7952b4a..b02ff5433d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt index 895db26a5e..22f3184ca9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt index 0c770b473e..a1bd8c6a56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt index e345749d3b..e645957907 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt index 1ce5a7fddc..47c7752105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt index 8f51672035..06114e6264 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt index 20323ca202..0398457c17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt index e77f9212c5..7106b78628 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt index 6c71814ad1..966adbb6f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt index e4807f1951..7ed3ede3f5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt index 777d84149a..256620c88b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt index 8c8baa9639..4bcfc072ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt index bda1362424..3badd6c266 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt index 2e6b3977e7..d861b93321 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt index 3c4b7420ca..de916a837e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt index a11139a75e..7efa2af902 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt index 76d4cee311..d0337545ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt index d040e4dded..d6ef7b9524 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt index 4c0364513a..27a23d2f6d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt index 98e2df02bd..d89fc51b0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt index 39096a60c8..544d9defe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt index c27e03a689..64b9dc3507 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt index c0e5a72b61..a3df612a46 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt index 537f0dc3c2..d06bd04004 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt index 2c19dd6316..a30932af57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt index 3237e3310f..6f2acb5122 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt index 587a1adc89..634cf9339e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt index f1421306b7..ad227b534b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt index 413f85f7d7..78880109e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt index 82693d0cc2..05fca4a2f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt index 53faee448e..c7c3fc3a80 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt index 37c121783d..c58ee68193 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt index 8e0bd33a9e..3e39a7efa9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt index cdd6cd93aa..0efa7782e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt index d095a30ea4..2e03ef9959 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt index 22420354d1..6cec82833d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt index 4b716bbd69..e49cb0bd5b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt index d5ff7d1928..3e7467fb8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt index 1223dbb0fc..fec7c29b74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt index 615a9185ab..cfb392527f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt index d7e17cce1c..21883227dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt index f74ce5c98f..74d47121cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt index a8f58bc93e..b4bbfb87da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt index 6ea186a3ab..85767a922f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt index 59a8cebda0..671168251e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt index 928419101a..cd48e673d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt index d03b9b654d..ff99c50e0a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt index 5dfd2790f1..249f2687e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt index dfd4bc8c1e..bf5fad6d2f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt index 894c3002e3..517ad96325 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt index 0054fb10ad..d3b7eceae6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt index c17acf7553..0777e73080 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt index 782c6ef289..33d8f6ceca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt index 60ec2f5b2c..b2f7599fda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt index e47b435561..bcc3f34c2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt index 40779e7b09..2dd58c64e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt index 82dee63959..465b33658d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt index 9be84ab991..9187df561b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt index 684258c0ed..c311860e48 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt index 1ee4105bad..4a9d4190a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt index af39917945..44f22055dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt index 0931c93dc0..0f98aa0cd8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt index 65554ae714..a1981cdab9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt index 0ff0cd231c..0ed1ba97be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt index b04b8892b9..032b46df11 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt index 0afc8e816d..9a537b8c9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt index 4d23d90255..f3e900ca72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt index 8a0b25bcb1..b475208415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt index e173ceaf10..36494ddd78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt index b38c1645d1..12eacd1e08 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt index 7f1ac40808..cb1d382544 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt index 63a380d71f..4e8f7173cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt index 511316fe86..1d1313f54c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt index 9d76e1a89e..7007d58e06 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt index daecf9b41d..d280310b62 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt index 447c4c7032..1ccc6b3407 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt index fe57003c24..147ed86ecd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt index c27fb5a7d1..c1e80295bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt index 6e7770dc6e..7ef0e35606 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt index 6459193eea..a87c616a21 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt index 174da9a421..7c2b894abc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt index b76a46b51a..52d0052a43 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt index f7c027dcf5..5a0a6ab105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt index 7dd5844498..0f59d91033 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt index daf8ac9426..12afd564a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt index 4f42bf5c54..da34e35aca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt index ac75b3e2d3..422288915d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt index 933e41f385..46f05a9ae3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt index 8e7bfd18e1..4e61e0910e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt index c00ab66882..b6fce40a03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt index 48dd92768e..3c5d443d47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt index 23cbbf88c8..f71121ca5c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt index ee330ebae9..9df018c9e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt index b79172090f..9072739f25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt index 3940312fef..0df3c5e876 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt index b7064185bb..07580369f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt index d2e264d6cf..d36db2e554 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt index a4d4e904d9..3ffb2c5395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt index abc7731cf5..d97afe19be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt index 363e6db013..d5829844cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt index 1c7d7d0683..bbfa5eccac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt index b72e281e87..06965640db 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt index 3d121abe8e..e6ede0c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt index 2f09e739a2..a58159562c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt index a58dceba78..e6c88803b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt index a7c3f0e54b..cc9682de1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt index 769c3c87ca..0f2a1fd739 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt index cf53fc59e4..5f1357d807 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt index be014bcbf1..7afb43097c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt index ac4c280c16..6a3efdda3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt index 4d57790750..96d0e667aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt index 3f8399035c..e2555df35e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt index 48a7cf841b..170c51c598 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt index 93ac1b946e..0ba81b4ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt index a80e2e5940..8d5d084136 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt index 203b87cafc..5fc2e84382 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt index a0ed5beabb..ab34f372f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt index 0eac51df19..c8f4130f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt index 705fccaae8..033d2b7941 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt index e60e621047..34750068d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt index 55b939619e..3a590a87ed 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt index e53f195d09..cd991108d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt index 18a2a21009..579cd059c7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt index 82c082e019..77be686643 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt index 8c84394d9a..75ddbb0faa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt index acecec40d2..d2ba773019 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt index f196491e20..9dcbbe37e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt index 022b1dfe99..3f74030d8f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt index a60e7ae871..59424c78c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt index 5d979ec64d..a9051f551f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt index 7eb8d739c4..e1f50ed978 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt index 0efd4775e3..364650af83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt index 8c582ba4ee..181e9a0d03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt index a16b0e8e66..30435dc1da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt index 6c8374d2d3..466bdebdab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt index f5ce1e4155..09cedd8d91 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt index 5999d71073..ac0c09d41b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt index 689978f278..e1afca9e25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt index da50ccc180..e206ac1758 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt index d81d6ff618..7173816564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt index cd382811cb..02f1a4f1eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt index 21350333f3..d80a2efebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt index 8d65db2adb..828ee3bb9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt index 7ec3478439..68cad9ba4c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt index 2e51bb7cdc..99c4862f96 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt index 9088c3b2bb..5435bad811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt index e3f53df2ee..ba97b07c4a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt index b32e5c1371..86888ff699 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt index e9267dcce0..eddfce6297 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt index 8b48b420e4..411fbf99bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt index a611f18e26..97f2974ad5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v3.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt index b204a02c0a..78dba9482c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt index 8833d13e8b..e5f5d0e57c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt index fa47657da0..c32efbb316 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt index 5a0ecb5c29..9b2860b808 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt index b8571199a4..e8eb56080d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt index 115bd2f8e7..1aeeec3f0f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt index 839acb038c..50f397e550 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt index 6c19d52e96..01d3de582c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt index 402111198d..6feef817ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt index 7ffe1ae981..04e283e640 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt index 33c6ba72ba..69365eea77 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt index b3f661b248..11f8fc952f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt index 4549067691..798a9335b8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt index ed2e6f0ec0..0f4c8d8082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt index 9d2226a971..fcbd2ca34e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt index 461eec2931..67c8a1b8d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt index 32c6976213..11c16708e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt index 73e940066e..87d9a1c854 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt index 681a7c5869..eea6d4c2d4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt index ae9eb00506..641c31cc7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt index 96881b1312..4d000f9116 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt index 71070c6eac..97e5670c4e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt index 31f08b56d6..379ebe7e47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt index c021e3cace..0a2d9dbc87 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt index e96a37db1f..b2052a65e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt index 5a288051ce..6a064026be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt index e605f387f8..f108f2abf5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt index cb05e8c0af..7d70043c3c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt index 7f29e08419..134bf3450c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt index 2386b6842e..982aafd8b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt index a1a130e68e..530fead6b6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt index 6d1865531b..72bd5dd7f4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt index e188df66aa..b390abcdcf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt index dc8b825d9e..7160b578d4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt index c82d8d0535..08eb48ab4b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt index fed68e627a..a5bb7cbd9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt index b96fbe7da4..d04e41c0af 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt index 45bdbd52d1..551985f4c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt index f5850c45c2..8cf2006c0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt index 303d865f27..df06aa4b03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt index 29a4510e29..0d5704fd9d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt index 9025cc1876..3ca4b80353 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt index a7aa64b0e8..2ca5159c2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt index 0fca8a4fc0..7f1a4c9894 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt index 5aa485d463..c2b07eb02b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt index b177572683..f330d23a32 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt index 1201546395..5be8f6c986 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt index 98a70ef8bb..605f279127 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt index 02e82059ba..b80f7d5509 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt index e595d78162..5cc0d4d147 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt index 30ec89dc27..0f7fa7f423 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt index c4b068700a..76ca0ac22b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt index 90eda81a2d..6b163bed64 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt index d0cff2c0bb..4d0db3f396 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt index 680943f5cd..6cef4d5f27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt index e4a1f06293..2236d300a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt index dc00d67c11..c54bcc947f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt index 4898cba04e..9d8c3e42ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt index 2d0b1d6e67..cc85c9730d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt index f5f8194fd5..08a7722d2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt index 9e72eba6be..8a4b265bd2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt index d4d18c3158..ce672994d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt index c7dc4c8b70..fdc960f09f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt index 4172321d63..a8c9eb5965 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt index 4786c14487..1b48e29138 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt index a480972082..ffdccc794b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt index 86c612d7bc..14a5c3c487 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt index 97b2967321..de350b1a1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt index 69c09cccb2..78425487b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt index d01c4700ef..1e7769ad17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt index 9c0ceaa381..4571e805ff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt index a95d23ba71..e503ccfd49 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt index 4a283fb7ac..cf28543db8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt index 50a75787bf..9ca1441414 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt index b60b7c346f..2b67e7f501 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt index 356e8bbd98..66f7ae04e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt index cb7c7578fe..36c167654c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt index b52b858791..de8eef58a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt index 95da2c5482..db854cc02f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt index 4f5086145e..9c03ddb18f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt index ee52b7f809..d777a2cbd6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt index b52d4d7838..6a3157fa23 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt index 26951c46ec..29305ee238 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt index f3ff4ddd3d..ca515b4cd1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt index 9fdae66a4b..1ee578775f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt index a0eb41efa5..998654487c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt index 01d736e446..b2cc3d8a5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt index 736e396539..2e080d6749 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt index 2f300ed4bc..3b7e38421b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt index ba0d50438c..b5f8cc9cdc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt index 4fa467d6de..77bed492c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt index c476d30a7f..60bbe0d300 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt index c8908feb00..3801448446 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt index 5b58e86761..bf283c08fd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt index 76f51b45c1..0dfca27ca8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt index 45772b9da6..8d556ecd2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt index 5c1f4def2f..baa542b609 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt index 5dbf798b2c..f5a71543dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt index 4b478801c3..d09319bdda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt index 2437561712..9bf592f394 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt index 820333f09d..ee8c189adc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt index 1d48ddf662..f1defd2639 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt index e09f12a6e9..282d9d0f67 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt index bbc117e916..42d1d3ca06 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt index 7445b67612..5065ae835f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt index 3252fb1292..da004d2b13 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt index 5feb7a9101..e2b2729391 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt index 4a2f6c8449..63b9877c78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt index 79ece757d2..bdb06a70fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt index 6c71814ad1..966adbb6f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt index 79443cd3c9..70d8aa851a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt index 74e3d0142e..cb878d7a57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt index fb7cd43335..483d5e0373 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt index bda1362424..3badd6c266 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt index 2e6b3977e7..d861b93321 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt index 06f514f752..39c92f77d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt index 9f341f01e1..f1b274e79f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt index 539ab9af3c..341b53cfd7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt index df9569c8ec..25135d65a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt index a1425892c1..ba9ee632e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt index 878370545c..3e2f6d3774 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt index 28e97de348..68f887999c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt index d5ce5b9e9d..148bb53f27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt index ca922ce69e..cca68b5302 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt index a713f694db..03ec290961 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt index 5594cf20e8..69cbc1f0aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt index ea2f80b90a..a756c3028a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt index d40a65846e..f17b3d91b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt index 62a9ea1e86..5e385dd92a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt index 1b1dd1f6d6..5c3f351957 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt index 898acdd3c5..7c2ae9430d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt index ee6ac0c4b0..9c7ce510f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt index 6f50a67e53..f37d30204f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt index 3eb807e9af..46a211a5e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt index 1c9491fc7f..49d8eee6b0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt index 7f0764b188..f6868acf20 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt index 75649c1944..0171fe5178 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt index 6ce000f77b..c61c3f1882 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt index f1a276e30b..5483eff67f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt index 62c0064a54..bfb5321b78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt index 91d93f40bf..e52422a8ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt index 788978f3cc..0533ca5ad8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt index baa4d89b98..d222a0c564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt index 86b3ecd04c..6ee9d6aab3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt index 8ce7a68722..c8cf1a76b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt index e90e6793e4..e3d8ffb196 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt index 928419101a..cd48e673d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt index d5f1da1e0d..2b6fa24c12 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt index bfae3757b6..92652fdbf6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt index 9bd2153323..35c5ce7f0a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt index a64f388958..bd6bd29cb2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt index 0979a8efcc..858ed5581c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt index dcded46318..2cda3eaa27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt index b305d15d59..3282be0cb1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt index c4f9616be0..f43cb42929 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt index e47b435561..bcc3f34c2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt index a55c2f1a4d..bea1bd5dc6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt index abccf817a7..0397c1bc16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt index 0d71c2bced..6e0b566f32 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt index c9ab21684b..8e0a222b47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt index 69cc05508a..a000102611 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt index 73fb0e9aa8..240f6c6fa0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt index 6ffcd65104..e476b66526 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt index 3501894a1f..1979c52102 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt index 2f97a85514..e20391fdf7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt index 3d294a1631..c4e7156536 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt index 794021d303..86816f64de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt index 0ea8f686b2..32420e53c8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt index e8a52b01b3..2522dde116 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt index a4de643718..af4aed7880 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt index 8a0f99e2e9..a5631e61b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt index 9b334c9c4f..6c012d3262 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt index 1b4daa1a84..39fc3da59b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt index 7ac10ef268..0acc57e198 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt index ede0dcc501..c14803f6d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt index 188c89518a..9fe63aeb00 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt index e3d8a6d5ea..0be4b9e6ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt index 611bf32886..dd419094b8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt index 521f6e21ed..b4d5e10361 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt index f63cd45b08..297977fee3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt index 72dd7b1af3..bb78e28fe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt index a45fe1fd0b..8213b7839a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt index 20e7cab3dd..fb18a86835 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt index a72256844a..f815ed0e7f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt index 7dd5844498..0f59d91033 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt index 142ac268a6..23e251c847 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt index 1c6fcda290..0a9e5886c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt index 0e9baeb8c4..23149d60e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt index 28cf39ebbd..596f193a0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt index 8f72ed7a31..402ce26b0e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt index e48e31a006..ada6aeed72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt index 8a75013fdd..92bf199d65 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt index 110dba4891..9f2b767568 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt index 53627b618c..4c67ed4673 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt index b79172090f..9072739f25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt index 1862ad9b2f..ab206cc7b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt index 3d789fcd3e..cd459d0cd6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt index 197e8dce65..cc01017538 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt index 79b773bbb2..d8a0ae6f6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt index 3558fc9cc4..8a73b7dc5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt index b2c80ed158..40e89d4f1d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt index 1c7d7d0683..bbfa5eccac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt index 92e5134963..aa00948b79 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt index 3d121abe8e..e6ede0c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt index 5e43737fbe..cecfb1446f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt index b3706e3290..073ba391cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt index b5a9f82c1e..71967bb046 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt index b215ecb961..a8f83fb3ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt index f435ebd1fe..0a7d4d0dc9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt index 95d6ab6eee..34003d9fb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt index 943e253a18..c5c9a9373f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt index 17d52bfd8f..7a54a0d364 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt index d3fa3ad599..297212f133 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt index c0724d77dd..fc4e7e9db1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt index 93ac1b946e..0ba81b4ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt index fcba2ec1cf..f7ba989292 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt index 59adee2b6f..94b04dd9da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt index f6efee1f55..c9768b39e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt index d54f5efb47..238075ee8d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt index 12d1718678..0b601733da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt index e60e621047..34750068d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt index 7cb343d921..b64f349bbb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt index e53f195d09..cd991108d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt index 9d89ca867a..5c536aeae0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt index 7c7ce9a754..b7f4a71de5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt index 3ac4722c9b..87f72287b3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt index 9d586ea1eb..ff8ebad041 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt index e4773d2de5..317d401a7b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt index 6a2fb21e80..81a47a51ca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt index eb7aecc7be..0931340112 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt index 0a32c5c2c2..37de06b7f4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt index 1cb6aa600d..edb0e3dd88 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt index 251443de16..ec3e62fdcf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt index e91216f3b5..58f159833c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt index 13196436bd..c52e1f7f0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt index fde8690e35..e39840506f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt index 341b8048ee..479d6ae385 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt index a2e43e720a..97f0675b95 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt index c2dc7106b9..cbdba89016 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt index 91a6dc1638..13628947e8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt index d62b6b2e5e..aeb57d6044 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt index cd382811cb..02f1a4f1eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt index 84fadad535..49a02bddbd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt index 1467195e36..2954db32ef 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt index eb66c17ded..63544da5f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt index 5c3221c532..94f6f49e16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt index eece32eb7b..d59007f375 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt index 40ed2a329d..39e5270449 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt index ad1140c15f..1d1b2f323f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt index 74998cd9ee..03e84fd8e6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt index f9ed91d27a..c81183142c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt index 7fdb873f35..e4c87be48b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt index b204a02c0a..78dba9482c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt index 8833d13e8b..e5f5d0e57c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt index fa47657da0..c32efbb316 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt index 5a0ecb5c29..9b2860b808 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt index b8571199a4..e8eb56080d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt index 115bd2f8e7..1aeeec3f0f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt index 839acb038c..50f397e550 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt index 6c19d52e96..01d3de582c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt index 402111198d..6feef817ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt index 7ffe1ae981..04e283e640 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt index 33c6ba72ba..69365eea77 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt index b3f661b248..11f8fc952f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt index 4549067691..798a9335b8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt index ed2e6f0ec0..0f4c8d8082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt index 9d2226a971..fcbd2ca34e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt index 461eec2931..67c8a1b8d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt index 32c6976213..11c16708e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt index 73e940066e..87d9a1c854 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt index 681a7c5869..eea6d4c2d4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt index ae9eb00506..641c31cc7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt index 96881b1312..4d000f9116 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt index 71070c6eac..97e5670c4e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt index 31f08b56d6..379ebe7e47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt index c021e3cace..0a2d9dbc87 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt index e96a37db1f..b2052a65e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt index 5a288051ce..6a064026be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt index e605f387f8..f108f2abf5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt index cb05e8c0af..7d70043c3c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt index 7f29e08419..134bf3450c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt index 2386b6842e..982aafd8b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt index a1a130e68e..530fead6b6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt index 6d1865531b..72bd5dd7f4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt index e188df66aa..b390abcdcf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt index dc8b825d9e..7160b578d4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt index c82d8d0535..08eb48ab4b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt index fed68e627a..a5bb7cbd9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt index b96fbe7da4..d04e41c0af 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt index 45bdbd52d1..551985f4c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt index f5850c45c2..8cf2006c0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt index 303d865f27..df06aa4b03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt index 29a4510e29..0d5704fd9d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt index 9025cc1876..3ca4b80353 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt index a7aa64b0e8..2ca5159c2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt index 0fca8a4fc0..7f1a4c9894 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt index 5aa485d463..c2b07eb02b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt index b177572683..f330d23a32 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt index 1201546395..5be8f6c986 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt index 98a70ef8bb..605f279127 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt index 02e82059ba..b80f7d5509 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt index e595d78162..5cc0d4d147 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt index 30ec89dc27..0f7fa7f423 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt index c4b068700a..76ca0ac22b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt index 90eda81a2d..6b163bed64 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt index d0cff2c0bb..4d0db3f396 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt index 680943f5cd..6cef4d5f27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt index e4a1f06293..2236d300a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt index dc00d67c11..c54bcc947f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt index 4898cba04e..9d8c3e42ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt index 2d0b1d6e67..cc85c9730d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt index f5f8194fd5..08a7722d2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt index 9e72eba6be..8a4b265bd2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt index d4d18c3158..ce672994d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt index c7dc4c8b70..fdc960f09f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt index 4172321d63..a8c9eb5965 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt index 4786c14487..1b48e29138 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt index a480972082..ffdccc794b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt index 86c612d7bc..14a5c3c487 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt index 97b2967321..de350b1a1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt index 69c09cccb2..78425487b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt index d01c4700ef..1e7769ad17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt index 9c0ceaa381..4571e805ff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt index a95d23ba71..e503ccfd49 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt index 4a283fb7ac..cf28543db8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt index 50a75787bf..9ca1441414 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt index b60b7c346f..2b67e7f501 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt index 356e8bbd98..66f7ae04e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt index cb7c7578fe..36c167654c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt index b52b858791..de8eef58a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt index 95da2c5482..db854cc02f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt index 4f5086145e..9c03ddb18f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt index ee52b7f809..d777a2cbd6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt index b52d4d7838..6a3157fa23 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt index 26951c46ec..29305ee238 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt index f3ff4ddd3d..ca515b4cd1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt index 9fdae66a4b..1ee578775f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt index a0eb41efa5..998654487c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt index 01d736e446..b2cc3d8a5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt index 736e396539..2e080d6749 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt index 2f300ed4bc..3b7e38421b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt index ba0d50438c..b5f8cc9cdc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt index 4fa467d6de..77bed492c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt index c476d30a7f..60bbe0d300 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt index c8908feb00..3801448446 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt index 5b58e86761..bf283c08fd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt index 76f51b45c1..0dfca27ca8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt index 45772b9da6..8d556ecd2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt index 5c1f4def2f..baa542b609 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt index 5dbf798b2c..f5a71543dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt index 4b478801c3..d09319bdda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt index 2437561712..9bf592f394 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt index 820333f09d..ee8c189adc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt index 1d48ddf662..f1defd2639 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt index e09f12a6e9..282d9d0f67 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt index bbc117e916..42d1d3ca06 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt index 7445b67612..5065ae835f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt index 3252fb1292..da004d2b13 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt index 5feb7a9101..e2b2729391 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt index 4a2f6c8449..63b9877c78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt index 79ece757d2..bdb06a70fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt index 6c71814ad1..966adbb6f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt index 79443cd3c9..70d8aa851a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt index 74e3d0142e..cb878d7a57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt index fb7cd43335..483d5e0373 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt index bda1362424..3badd6c266 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt index 2e6b3977e7..d861b93321 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt index 06f514f752..39c92f77d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt index 9f341f01e1..f1b274e79f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt index 539ab9af3c..341b53cfd7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt index df9569c8ec..25135d65a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt index a1425892c1..ba9ee632e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt index 878370545c..3e2f6d3774 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt index 28e97de348..68f887999c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt index d5ce5b9e9d..148bb53f27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt index ca922ce69e..cca68b5302 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt index a713f694db..03ec290961 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt index 5594cf20e8..69cbc1f0aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt index ea2f80b90a..a756c3028a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt index d40a65846e..f17b3d91b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt index 62a9ea1e86..5e385dd92a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt index 1b1dd1f6d6..5c3f351957 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt index 898acdd3c5..7c2ae9430d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt index ee6ac0c4b0..9c7ce510f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt index 6f50a67e53..f37d30204f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt index 3eb807e9af..46a211a5e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt index 1c9491fc7f..49d8eee6b0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt index 7f0764b188..f6868acf20 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt index 75649c1944..0171fe5178 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt index 6ce000f77b..c61c3f1882 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt index f1a276e30b..5483eff67f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt index 62c0064a54..bfb5321b78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt index 91d93f40bf..e52422a8ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt index 788978f3cc..0533ca5ad8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt index baa4d89b98..d222a0c564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt index 86b3ecd04c..6ee9d6aab3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt index 8ce7a68722..c8cf1a76b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt index e90e6793e4..e3d8ffb196 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt index 928419101a..cd48e673d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt index d5f1da1e0d..2b6fa24c12 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt index bfae3757b6..92652fdbf6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt index 9bd2153323..35c5ce7f0a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt index a64f388958..bd6bd29cb2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt index 0979a8efcc..858ed5581c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt index dcded46318..2cda3eaa27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt index b305d15d59..3282be0cb1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt index c4f9616be0..f43cb42929 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt index e47b435561..bcc3f34c2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt index a55c2f1a4d..bea1bd5dc6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt index abccf817a7..0397c1bc16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt index 0d71c2bced..6e0b566f32 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt index c9ab21684b..8e0a222b47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt index 69cc05508a..a000102611 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt index 73fb0e9aa8..240f6c6fa0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt index 6ffcd65104..e476b66526 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt index 3501894a1f..1979c52102 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt index 2f97a85514..e20391fdf7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt index 3d294a1631..c4e7156536 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt index 794021d303..86816f64de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt index 0ea8f686b2..32420e53c8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt index e8a52b01b3..2522dde116 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt index a4de643718..af4aed7880 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt index 8a0f99e2e9..a5631e61b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt index 9b334c9c4f..6c012d3262 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt index 1b4daa1a84..39fc3da59b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt index 7ac10ef268..0acc57e198 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt index ede0dcc501..c14803f6d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt index 188c89518a..9fe63aeb00 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt index e3d8a6d5ea..0be4b9e6ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt index 611bf32886..dd419094b8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt index 521f6e21ed..b4d5e10361 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt index f63cd45b08..297977fee3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt index 72dd7b1af3..bb78e28fe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt index a45fe1fd0b..8213b7839a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt index 20e7cab3dd..fb18a86835 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt index a72256844a..f815ed0e7f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt index 7dd5844498..0f59d91033 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt index 142ac268a6..23e251c847 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt index 1c6fcda290..0a9e5886c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt index 0e9baeb8c4..23149d60e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt index 28cf39ebbd..596f193a0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt index 8f72ed7a31..402ce26b0e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt index e48e31a006..ada6aeed72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt index 8a75013fdd..92bf199d65 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt index 110dba4891..9f2b767568 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt index 53627b618c..4c67ed4673 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt index b79172090f..9072739f25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt index 1862ad9b2f..ab206cc7b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt index 3d789fcd3e..cd459d0cd6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt index 197e8dce65..cc01017538 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt index 79b773bbb2..d8a0ae6f6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt index 3558fc9cc4..8a73b7dc5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt index b2c80ed158..40e89d4f1d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt index 1c7d7d0683..bbfa5eccac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt index 92e5134963..aa00948b79 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt index 3d121abe8e..e6ede0c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt index 5e43737fbe..cecfb1446f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt index b3706e3290..073ba391cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt index b5a9f82c1e..71967bb046 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt index b215ecb961..a8f83fb3ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt index f435ebd1fe..0a7d4d0dc9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt index 95d6ab6eee..34003d9fb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt index 943e253a18..c5c9a9373f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt index 17d52bfd8f..7a54a0d364 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt index d3fa3ad599..297212f133 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt index c0724d77dd..fc4e7e9db1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt index 93ac1b946e..0ba81b4ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt index fcba2ec1cf..f7ba989292 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt index 59adee2b6f..94b04dd9da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt index f6efee1f55..c9768b39e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt index d54f5efb47..238075ee8d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt index 12d1718678..0b601733da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt index e60e621047..34750068d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt index 7cb343d921..b64f349bbb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt index e53f195d09..cd991108d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt index 9d89ca867a..5c536aeae0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt index 7c7ce9a754..b7f4a71de5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt index 3ac4722c9b..87f72287b3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt index 9d586ea1eb..ff8ebad041 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt index e4773d2de5..317d401a7b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt index 6a2fb21e80..81a47a51ca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt index eb7aecc7be..0931340112 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt index 0a32c5c2c2..37de06b7f4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt index 1cb6aa600d..edb0e3dd88 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt index 251443de16..ec3e62fdcf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt index e91216f3b5..58f159833c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt index 13196436bd..c52e1f7f0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt index fde8690e35..e39840506f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt index 341b8048ee..479d6ae385 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt index a2e43e720a..97f0675b95 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt index c2dc7106b9..cbdba89016 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt index 91a6dc1638..13628947e8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt index d62b6b2e5e..aeb57d6044 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt index cd382811cb..02f1a4f1eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt index 84fadad535..49a02bddbd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt index 1467195e36..2954db32ef 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt index eb66c17ded..63544da5f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt index 5c3221c532..94f6f49e16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt index eece32eb7b..d59007f375 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt index 40ed2a329d..39e5270449 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt index ad1140c15f..1d1b2f323f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt index 74998cd9ee..03e84fd8e6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt index f9ed91d27a..c81183142c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt index 7fdb873f35..e4c87be48b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.6.1/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt index 647f257587..7eca881974 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt index 8833d13e8b..e5f5d0e57c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt index 3441140cc9..9ea033b2d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt index 5a0ecb5c29..9b2860b808 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt index b8571199a4..e8eb56080d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt index 5fc18fac4a..2002cb0b53 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt index f6e70475ed..028a3b3859 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt index 6c19d52e96..01d3de582c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt index 8768601422..78e6bec97a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt index 7ffe1ae981..04e283e640 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt index 1717644d72..39475be2da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt index d498db9508..701d9eeb7b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt index f657799854..892da63f33 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt index ed2e6f0ec0..0f4c8d8082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt index c817b7c39c..5c0583c0ad 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt index adb58ec386..5b5620119e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt index bb8a24f2a1..a42ff8f0db 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt index 73e940066e..87d9a1c854 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt index 0ffa6bd6c2..cc1090514d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt index ae9eb00506..641c31cc7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt index 96881b1312..4d000f9116 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt index 03015e7a09..65733907cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt index 31f08b56d6..379ebe7e47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt index c021e3cace..0a2d9dbc87 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt index a3ca3c8b24..0c25e9e7bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt index 5a288051ce..6a064026be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt index e605f387f8..f108f2abf5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt index 04b668d805..9e3cf9e503 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt index 7f29e08419..134bf3450c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt index 5bf248c91b..3c87304ec6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt index d5537f1062..3388d6af80 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt index 6c9b5ee912..6bbdf08c28 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt index e188df66aa..b390abcdcf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt index dc8b825d9e..7160b578d4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt index b337db8610..fdb28e3831 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt index fed68e627a..a5bb7cbd9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt index 14d66c4015..2bfd54fcb5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt index 45bdbd52d1..551985f4c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt index 355c527fcd..85196d7278 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt index aa0b7ac7b9..a4314c1005 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt index 67ccce5d10..6da91cd19e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt index 14fe99cd32..31529cffe8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt index d76a123604..0e5c0b86e6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt index 0fca8a4fc0..7f1a4c9894 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt index 884285fd13..6a851e0e82 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt index b177572683..f330d23a32 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt index 1201546395..5be8f6c986 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt index 8092731ed0..788cf0269e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt index fe9c6af438..98e4fbcc83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt index e595d78162..5cc0d4d147 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt index 30ec89dc27..0f7fa7f423 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt index c4b068700a..76ca0ac22b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt index 5cf350c4fe..ebfbbf2770 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt index 42aabeb02c..446384cfb2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt index 55eab96399..b57fab2189 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt index 3cedd5c0ea..2d00c7a1a6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt index 59a220373c..5158abbf5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt index b2b7b72e80..e165bb1621 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt index 4832650fed..c37315ed51 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt index f5f8194fd5..08a7722d2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt index fa2821691f..c13ecae9a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt index f429e895ba..b017afc275 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt index a2f4cd9013..61387341fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt index c46176330c..3ca6d6e7a2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt index 4f218efb45..0568ebe3c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt index ded089c6b8..b9411cfb90 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt index 8e4527f570..5a1298bc4b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt index f4ee419b5e..48bbea8ca7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt index 78fa8effbb..aaca53f002 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt index d01c4700ef..1e7769ad17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt index 9c0ceaa381..4571e805ff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt index f8a4e07e8f..1468650bc6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt index 4a283fb7ac..cf28543db8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt index 50a75787bf..9ca1441414 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt index a7c3551cdd..4b92e6d1e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt index 3f4a2e8604..172f8811c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt index 1250829c91..33e3a6567a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt index b52b858791..de8eef58a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt index 95da2c5482..db854cc02f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt index 8422441bd5..30299cb32d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt index 58835b6e78..e11e3a861d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt index b52d4d7838..6a3157fa23 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt index 26951c46ec..29305ee238 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt index 534c0252d4..4c2bdc9683 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt index fb2a32725c..3cff16ae14 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt index c669beff75..36170e2b56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt index 01d736e446..b2cc3d8a5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt index 736e396539..2e080d6749 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt index 2f300ed4bc..3b7e38421b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt index 17d9d8928c..f2dcbafae6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt index 4fa467d6de..77bed492c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt index 682b5cdab6..fc5ee00b98 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt index c8908feb00..3801448446 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt index 7d996fa9b5..324c2f10f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt index e4741e9ea0..5dbc7b737f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt index 45772b9da6..8d556ecd2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt index 6bf77f092c..931f351c1f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt index 94fe99de0b..9759e5e4ea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt index 4b478801c3..d09319bdda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt index 2437561712..9bf592f394 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt index 98cbdb26a6..2b68983704 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt index 1d48ddf662..f1defd2639 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt index e09f12a6e9..282d9d0f67 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt index 4eb144ef97..7897165a47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt index 7445b67612..5065ae835f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt index fd9e20477b..8222711c00 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt index 5feb7a9101..e2b2729391 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt index 4a2f6c8449..63b9877c78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt index 81b81cf551..ab577ae242 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt index 6c71814ad1..966adbb6f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt index 79443cd3c9..70d8aa851a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt index 74e3d0142e..cb878d7a57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt index fb7cd43335..483d5e0373 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt index bda1362424..3badd6c266 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt index 2e6b3977e7..d861b93321 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt index 06f514f752..39c92f77d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt index 828c2b9bd6..3776d79180 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt index b4da7369ba..b9f275a54e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt index df9569c8ec..25135d65a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt index 05174ed28d..bad3c8e3df 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt index a82d1abc82..094db6bab1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt index 28e97de348..68f887999c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt index 79e4e74914..efe34d52c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt index ca922ce69e..cca68b5302 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt index a713f694db..03ec290961 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt index 5594cf20e8..69cbc1f0aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt index e146033d87..b1ed7840d2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt index d40a65846e..f17b3d91b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt index 62a9ea1e86..5e385dd92a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt index 6e347918b1..568c874b97 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt index 898acdd3c5..7c2ae9430d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt index 59b3fa545e..3aff04ef60 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt index a18da13635..d7a9b7fb4d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt index b830e3716d..9fca86e50c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt index c3c2a5b841..b242d1e2b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt index 7f0764b188..f6868acf20 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt index 1582a9361a..509703e7e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt index e1e7b48f83..c1f2a46e54 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt index 03d9528c3e..c11384c16f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt index 97c1af097a..9d9a7422dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt index 2aa0f7d362..ef42d7e0f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt index 788978f3cc..0533ca5ad8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt index baa4d89b98..d222a0c564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt index cf140b768d..63ceeadd7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt index 8ce7a68722..c8cf1a76b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt index 85649d2639..612fb022d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt index 928419101a..cd48e673d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt index a4d4bd89a1..06b98b8728 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt index 4f3be0a2d5..73bdb6fd6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt index f31f94f835..eebc7cdf72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt index a64f388958..bd6bd29cb2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt index c849b54542..e75a5e60d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt index dcded46318..2cda3eaa27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt index 6b41f5b595..8dc188ed0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt index a5c45effce..0b5c8b92b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt index e47b435561..bcc3f34c2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt index 221f8f463c..d1e34df647 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt index 8760fc749f..3505b13ddf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt index 7c12f4e7a3..d40f2ede7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt index af1845673e..074858880e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt index cabde7f0f0..d079a193fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt index 75047bc9b2..79d2155f54 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt index 19bbf24649..febda9fbf7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt index ca2720338b..6e5e489efe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt index 8f631bed45..815464030b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt index 3d294a1631..c4e7156536 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt index 794021d303..86816f64de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt index 0ea8f686b2..32420e53c8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt index e8a52b01b3..2522dde116 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt index 177027661a..2b44a3997f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt index 9492f0e251..3c782907dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt index 9b334c9c4f..6c012d3262 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt index 499bc5eaa8..ffe954b691 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt index 13e81b8fa1..9b40043295 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt index 68ba018e01..41a962d9dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt index b3edbf3e59..0804462607 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt index e3d8a6d5ea..0be4b9e6ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt index 39dd784d21..ba1b314998 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt index 8222e3d3ff..ce79aa9bb8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt index 5d4a89de50..4b374affe0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt index 72dd7b1af3..bb78e28fe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt index a45fe1fd0b..8213b7839a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt index d79c4eafab..62b173f6d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt index a72256844a..f815ed0e7f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt index 7dd5844498..0f59d91033 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt index fb77eb77af..a74d184381 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt index 219c222edb..76ed0aa1fe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt index a83fec20c5..03050ffea9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt index f4584c318f..bfd95bd362 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt index 8f72ed7a31..402ce26b0e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt index c19ed3da2c..b0344d5b74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt index 8a75013fdd..92bf199d65 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt index 808f341070..ba4a707f4f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt index d81dcb13b6..9994235d68 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt index b79172090f..9072739f25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt index ce5ebde4af..e8859349ea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt index 3d789fcd3e..cd459d0cd6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt index fa10dc6604..dfca814e85 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt index 79b773bbb2..d8a0ae6f6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt index 3558fc9cc4..8a73b7dc5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt index d555c8fe25..5c95d6fa4b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt index 1c7d7d0683..bbfa5eccac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt index 92e5134963..aa00948b79 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt index 3d121abe8e..e6ede0c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt index 5e43737fbe..cecfb1446f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt index 2a671d7f5d..a084181b6c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt index 982423be92..8908487584 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt index d112c86322..c8051f1a53 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt index c7381f775a..120495e054 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt index d4ee08f24b..7dffdb07d1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt index 943e253a18..c5c9a9373f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt index 17d52bfd8f..7a54a0d364 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt index 10464e32ae..180c89eb63 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt index c0724d77dd..fc4e7e9db1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt index 93ac1b946e..0ba81b4ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt index 050463b24b..a149e15812 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt index f76032bed0..2b902e1fc6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt index f828f9ce79..aa62311b62 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt index d54f5efb47..238075ee8d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt index 12d1718678..0b601733da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt index e60e621047..34750068d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt index 74e876625a..deba6be21e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt index e53f195d09..cd991108d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt index a95f266140..11d7e9eca0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt index e460575682..b4fb144355 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt index 3ac4722c9b..87f72287b3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt index e596bed5e1..16b83a86d4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt index e4773d2de5..317d401a7b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt index 6a2fb21e80..81a47a51ca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt index 4be8ecbe4c..2e76e9805e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt index 1e5f6b9c1b..1c55b7a332 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt index 6c4108709a..3c9dc6ab6d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt index f7e75444db..71c6b14838 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt index e91216f3b5..58f159833c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt index 154adb360f..d57366a181 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt index fde8690e35..e39840506f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt index 341b8048ee..479d6ae385 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt index a2e43e720a..97f0675b95 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt index 9595f2f13f..aba0d30eda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt index 95d4e222f7..092086daa7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt index 5b18da6f80..c716246fac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt index cd382811cb..02f1a4f1eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt index 84fadad535..49a02bddbd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt index 988992af96..948eccb131 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt index b50eb971e2..fc712f0127 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt index 7b66db435d..11a6464a2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt index eece32eb7b..d59007f375 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt index 2dcd4563e2..47617e6114 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt index ad1140c15f..1d1b2f323f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt index cac9903961..84d402c834 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt index 1b4fa790e3..033bf64bb3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt index 31ca2d6ebc..7d9fd27da9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt index 647f257587..7eca881974 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt index 8833d13e8b..e5f5d0e57c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt index 3441140cc9..9ea033b2d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt index 5a0ecb5c29..9b2860b808 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt index b8571199a4..e8eb56080d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt index 5fc18fac4a..2002cb0b53 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt index f6e70475ed..028a3b3859 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt index 6c19d52e96..01d3de582c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt index 8768601422..78e6bec97a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt index 7ffe1ae981..04e283e640 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt index 1717644d72..39475be2da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt index d498db9508..701d9eeb7b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt index f657799854..892da63f33 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt index ed2e6f0ec0..0f4c8d8082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt index c817b7c39c..5c0583c0ad 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt index adb58ec386..5b5620119e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt index bb8a24f2a1..a42ff8f0db 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt index 73e940066e..87d9a1c854 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt index 0ffa6bd6c2..cc1090514d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt index ae9eb00506..641c31cc7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt index 96881b1312..4d000f9116 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt index 03015e7a09..65733907cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt index 31f08b56d6..379ebe7e47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt index c021e3cace..0a2d9dbc87 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt index a3ca3c8b24..0c25e9e7bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt index 5a288051ce..6a064026be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt index e605f387f8..f108f2abf5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt index 04b668d805..9e3cf9e503 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt index 7f29e08419..134bf3450c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt index 5bf248c91b..3c87304ec6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt index d5537f1062..3388d6af80 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt index 6c9b5ee912..6bbdf08c28 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt index e188df66aa..b390abcdcf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt index dc8b825d9e..7160b578d4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt index b337db8610..fdb28e3831 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt index fed68e627a..a5bb7cbd9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt index 14d66c4015..2bfd54fcb5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt index 45bdbd52d1..551985f4c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt index 355c527fcd..85196d7278 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt index aa0b7ac7b9..a4314c1005 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt index 67ccce5d10..6da91cd19e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt index 14fe99cd32..31529cffe8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt index d76a123604..0e5c0b86e6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt index 0fca8a4fc0..7f1a4c9894 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt index 884285fd13..6a851e0e82 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt index b177572683..f330d23a32 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt index 1201546395..5be8f6c986 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt index 8092731ed0..788cf0269e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt index fe9c6af438..98e4fbcc83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt index e595d78162..5cc0d4d147 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt index 30ec89dc27..0f7fa7f423 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt index c4b068700a..76ca0ac22b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt index 5cf350c4fe..ebfbbf2770 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt index 42aabeb02c..446384cfb2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt index 55eab96399..b57fab2189 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt index 3cedd5c0ea..2d00c7a1a6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt index 59a220373c..5158abbf5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt index b2b7b72e80..e165bb1621 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt index 4832650fed..c37315ed51 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt index f5f8194fd5..08a7722d2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt index fa2821691f..c13ecae9a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt index f429e895ba..b017afc275 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt index a2f4cd9013..61387341fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt index c46176330c..3ca6d6e7a2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt index 4f218efb45..0568ebe3c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt index ded089c6b8..b9411cfb90 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt index 8e4527f570..5a1298bc4b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt index f4ee419b5e..48bbea8ca7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt index 78fa8effbb..aaca53f002 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt index d01c4700ef..1e7769ad17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt index 9c0ceaa381..4571e805ff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt index f8a4e07e8f..1468650bc6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt index 4a283fb7ac..cf28543db8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt index 50a75787bf..9ca1441414 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt index a7c3551cdd..4b92e6d1e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt index 3f4a2e8604..172f8811c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt index 1250829c91..33e3a6567a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt index b52b858791..de8eef58a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt index 95da2c5482..db854cc02f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt index 8422441bd5..30299cb32d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt index 58835b6e78..e11e3a861d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt index b52d4d7838..6a3157fa23 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt index 26951c46ec..29305ee238 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt index 534c0252d4..4c2bdc9683 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt index fb2a32725c..3cff16ae14 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt index c669beff75..36170e2b56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt index 01d736e446..b2cc3d8a5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt index 736e396539..2e080d6749 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt index 2f300ed4bc..3b7e38421b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt index 17d9d8928c..f2dcbafae6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt index 4fa467d6de..77bed492c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt index 682b5cdab6..fc5ee00b98 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt index c8908feb00..3801448446 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt index 7d996fa9b5..324c2f10f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt index e4741e9ea0..5dbc7b737f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt index 45772b9da6..8d556ecd2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt index 6bf77f092c..931f351c1f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt index 94fe99de0b..9759e5e4ea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt index 4b478801c3..d09319bdda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt index 2437561712..9bf592f394 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt index 98cbdb26a6..2b68983704 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt index 1d48ddf662..f1defd2639 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt index e09f12a6e9..282d9d0f67 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt index 4eb144ef97..7897165a47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt index 7445b67612..5065ae835f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt index fd9e20477b..8222711c00 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt index 5feb7a9101..e2b2729391 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt index 4a2f6c8449..63b9877c78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt index 81b81cf551..ab577ae242 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt index 6c71814ad1..966adbb6f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt index 79443cd3c9..70d8aa851a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt index 74e3d0142e..cb878d7a57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt index fb7cd43335..483d5e0373 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt index bda1362424..3badd6c266 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt index 2e6b3977e7..d861b93321 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt index 06f514f752..39c92f77d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt index 828c2b9bd6..3776d79180 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt index b4da7369ba..b9f275a54e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt index df9569c8ec..25135d65a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt index 05174ed28d..bad3c8e3df 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt index a82d1abc82..094db6bab1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt index 28e97de348..68f887999c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt index 79e4e74914..efe34d52c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt index ca922ce69e..cca68b5302 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt index a713f694db..03ec290961 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt index 5594cf20e8..69cbc1f0aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt index e146033d87..b1ed7840d2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt index d40a65846e..f17b3d91b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt index 62a9ea1e86..5e385dd92a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt index 6e347918b1..568c874b97 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt index 898acdd3c5..7c2ae9430d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt index 59b3fa545e..3aff04ef60 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt index a18da13635..d7a9b7fb4d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt index b830e3716d..9fca86e50c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt index c3c2a5b841..b242d1e2b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt index 7f0764b188..f6868acf20 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt index 1582a9361a..509703e7e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt index e1e7b48f83..c1f2a46e54 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt index 03d9528c3e..c11384c16f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt index 97c1af097a..9d9a7422dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt index 2aa0f7d362..ef42d7e0f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt index 788978f3cc..0533ca5ad8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt index baa4d89b98..d222a0c564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt index cf140b768d..63ceeadd7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt index 8ce7a68722..c8cf1a76b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt index 85649d2639..612fb022d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt index 928419101a..cd48e673d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt index a4d4bd89a1..06b98b8728 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt index 4f3be0a2d5..73bdb6fd6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt index f31f94f835..eebc7cdf72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt index a64f388958..bd6bd29cb2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt index c849b54542..e75a5e60d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt index dcded46318..2cda3eaa27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt index 6b41f5b595..8dc188ed0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt index a5c45effce..0b5c8b92b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt index e47b435561..bcc3f34c2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt index 221f8f463c..d1e34df647 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt index 8760fc749f..3505b13ddf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt index 7c12f4e7a3..d40f2ede7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt index af1845673e..074858880e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt index cabde7f0f0..d079a193fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt index 75047bc9b2..79d2155f54 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt index 19bbf24649..febda9fbf7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt index ca2720338b..6e5e489efe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt index 8f631bed45..815464030b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt index 3d294a1631..c4e7156536 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt index 794021d303..86816f64de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt index 0ea8f686b2..32420e53c8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt index e8a52b01b3..2522dde116 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt index 177027661a..2b44a3997f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt index 9492f0e251..3c782907dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt index 9b334c9c4f..6c012d3262 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt index 499bc5eaa8..ffe954b691 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt index 13e81b8fa1..9b40043295 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt index 68ba018e01..41a962d9dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt index b3edbf3e59..0804462607 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt index e3d8a6d5ea..0be4b9e6ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt index 39dd784d21..ba1b314998 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt index 8222e3d3ff..ce79aa9bb8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt index 5d4a89de50..4b374affe0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt index 72dd7b1af3..bb78e28fe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt index a45fe1fd0b..8213b7839a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt index d79c4eafab..62b173f6d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt index a72256844a..f815ed0e7f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt index 7dd5844498..0f59d91033 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt index fb77eb77af..a74d184381 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt index 219c222edb..76ed0aa1fe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt index a83fec20c5..03050ffea9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt index f4584c318f..bfd95bd362 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt index 8f72ed7a31..402ce26b0e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt index c19ed3da2c..b0344d5b74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt index 8a75013fdd..92bf199d65 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt index 808f341070..ba4a707f4f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt index d81dcb13b6..9994235d68 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt index b79172090f..9072739f25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt index ce5ebde4af..e8859349ea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt index 3d789fcd3e..cd459d0cd6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt index fa10dc6604..dfca814e85 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt index 79b773bbb2..d8a0ae6f6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt index 3558fc9cc4..8a73b7dc5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt index d555c8fe25..5c95d6fa4b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt index 1c7d7d0683..bbfa5eccac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt index 92e5134963..aa00948b79 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt index 3d121abe8e..e6ede0c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt index 5e43737fbe..cecfb1446f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt index 2a671d7f5d..a084181b6c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt index 982423be92..8908487584 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt index d112c86322..c8051f1a53 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt index c7381f775a..120495e054 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt index d4ee08f24b..7dffdb07d1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt index 943e253a18..c5c9a9373f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt index 17d52bfd8f..7a54a0d364 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt index 10464e32ae..180c89eb63 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt index c0724d77dd..fc4e7e9db1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt index 93ac1b946e..0ba81b4ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt index 050463b24b..a149e15812 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt index f76032bed0..2b902e1fc6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt index f828f9ce79..aa62311b62 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt index d54f5efb47..238075ee8d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt index 12d1718678..0b601733da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt index e60e621047..34750068d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt index 74e876625a..deba6be21e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt index e53f195d09..cd991108d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt index a95f266140..11d7e9eca0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt index e460575682..b4fb144355 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt index 3ac4722c9b..87f72287b3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt index e596bed5e1..16b83a86d4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt index e4773d2de5..317d401a7b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt index 6a2fb21e80..81a47a51ca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt index 4be8ecbe4c..2e76e9805e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt index 1e5f6b9c1b..1c55b7a332 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt index 6c4108709a..3c9dc6ab6d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt index f7e75444db..71c6b14838 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt index e91216f3b5..58f159833c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt index 154adb360f..d57366a181 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt index fde8690e35..e39840506f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt index 341b8048ee..479d6ae385 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt index a2e43e720a..97f0675b95 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt index 9595f2f13f..aba0d30eda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt index 95d4e222f7..092086daa7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt index 5b18da6f80..c716246fac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt index cd382811cb..02f1a4f1eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt index 84fadad535..49a02bddbd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt index 988992af96..948eccb131 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt index b50eb971e2..fc712f0127 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt index 7b66db435d..11a6464a2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt index eece32eb7b..d59007f375 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt index 2dcd4563e2..47617e6114 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt index ad1140c15f..1d1b2f323f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt index cac9903961..84d402c834 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt index 1b4fa790e3..033bf64bb3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt index 31ca2d6ebc..7d9fd27da9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v4.8/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt index fe090ca7ec..a6a40978f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt index 7ed14598f1..f737724244 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt index b9d2cfc642..3fcbda77c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt index 64f0734d43..777739ae9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt index d0e5e72cf1..a7b69ef6a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt index 1c6645086f..115d7a895b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt index 35a5e89304..1b939f7323 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt index 6a6064b921..832ed094b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt index 50356f16af..8060e0ce1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt index 2f066453e5..2ac1cc678d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt index f221d8fd95..cbacce5eca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt index 2de779d724..9d3bfa1b60 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt index b201ab4fa4..95903c7d74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt index 9d3faef6be..cfd3f4802e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt index 322ec96628..6db1e602aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt index f62bb88522..28e9ca4a16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt index c9fed419b7..a97779aee7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt index 0401ae9eb3..d70eb2ac52 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt index c35abb9cf4..cf37859a1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt index b347cff183..8b15ba5069 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt index 8527f46115..57637cfd9e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt index 6a3c91301d..b6f5eefb71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt index 031f03666e..4912a123e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt index af72bc301e..1823e02934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt index 53e6960a01..59ee98d74a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt index 2ab17d31ae..a00570c2b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt index 3327175f25..59eb2b3e3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt index 50b2023747..c7757ff553 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt index 2c31796bef..43eaa290bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt index 655336ea9e..d553001d3f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt index d63a4de74a..7f4fa79074 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt index 62aae92969..731bef4b40 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt index 2a718cfcc1..7fb36653ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt index 166ccda341..7352c159f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt index ef57a549a0..c20f49acc5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt index fed68e627a..a5bb7cbd9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt index cb1fac193e..e8c4f884bf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt index 45bdbd52d1..551985f4c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt index c802031b32..6628e276dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt index a23a17ea57..3b4ff0779c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt index 53cc947e28..51f5e66339 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt index 50fb89a635..a2ad670082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt index 6bc4fbf1cc..d5ad36b27a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt index 0fca8a4fc0..7f1a4c9894 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt index 947b381929..1df52c5979 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt index 9df48e417b..cee6c4e452 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt index 2d2ee6d560..e307eaca2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt index 935a94c234..40c1cd604a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt index 1afb89d6a5..84c537fdcb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt index 819c0e361d..d1fb038be3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt index 33e2390cc6..c6352b3346 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt index 41c256fbf1..39db5da00b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt index 68871feac9..b94aa378de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt index 69f6b032e3..580d89af73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt index 4c236b9d97..6ef7e58875 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt index ae7bcef487..7a1191debe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt index 9b5408f03b..23f11aa976 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt index 232ef93296..f289df8e5f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt index 059bf64e83..1069b68409 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt index f5f8194fd5..08a7722d2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt index 635d50551c..3086037aa1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt index 76d9c6cf39..5f8cb0e02c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt index 5172b47797..5819461e8b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt index 46159e6989..0adbc29ad1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt index a8a6d9bd5e..baa7561652 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt index 581fe0c4fb..05ce745a83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt index 6ef290f2cf..0bc52007bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt index 5993455cd4..bfb3299d42 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt index a52944fff5..5f1a4d9179 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt index 2c51c05aff..1c2bdefd70 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt index 4590729110..644cd141aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt index 567e6afa2a..fd2f0fa871 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt index 5c3562dc5a..bfcf2d852b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt index 4a1309a578..efc56831ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt index 44d14baf36..fe2597e0d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt index a135b0c16e..063b8cad6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt index 03f782ed64..7201d5e958 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt index e150c64637..a9fa7d6e9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt index dc018396e3..1b3dfc0ee5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt index df8d1dd9f1..2d9fffa9f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt index 96d1fab7bb..04a1bd1a9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt index 53809f62a5..49ddb80cd3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt index 92dff3b307..67aa5eec16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt index df9abbeb97..5070da426a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt index 57686bb650..a00e266f7d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt index abc7fa4335..ad02d82fb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt index 086f86b4f0..99a18d236c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt index 1b84f1b0e5..0baff1b2f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt index d80ae1217f..b2f2a4d39c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt index 03ea6fd3c1..1c381a25a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt index 27e86b3237..9fc510982a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt index 80f67f98ca..3d05544669 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt index f86618b42e..f18a4f063f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt index 25b613e8d3..c6f852cdd5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt index 5992e7c3a9..78ac441301 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt index 3e4067fbd6..b353dbc27f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt index d3efd1dc9f..f90e959e35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt index fe3538a85a..8243d52415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt index 4b478801c3..d09319bdda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt index ad3f89e6e8..bd6750ba58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt index f888064ed6..2ab25bac27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt index 2ea7952b4a..b02ff5433d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt index 895db26a5e..22f3184ca9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt index 0c770b473e..a1bd8c6a56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt index e345749d3b..e645957907 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt index 1ce5a7fddc..47c7752105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt index 8f51672035..06114e6264 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt index 20323ca202..0398457c17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt index e77f9212c5..7106b78628 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt index 6c71814ad1..966adbb6f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt index e4807f1951..7ed3ede3f5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt index 777d84149a..256620c88b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt index 8c8baa9639..4bcfc072ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt index bda1362424..3badd6c266 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt index 2e6b3977e7..d861b93321 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt index 3c4b7420ca..de916a837e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt index a11139a75e..7efa2af902 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt index 76d4cee311..d0337545ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt index d040e4dded..d6ef7b9524 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt index 4c0364513a..27a23d2f6d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt index 98e2df02bd..d89fc51b0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt index 39096a60c8..544d9defe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt index c27e03a689..64b9dc3507 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt index c0e5a72b61..a3df612a46 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt index 537f0dc3c2..d06bd04004 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt index 2c19dd6316..a30932af57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt index 3237e3310f..6f2acb5122 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt index 587a1adc89..634cf9339e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt index f1421306b7..ad227b534b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt index 413f85f7d7..78880109e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt index 82693d0cc2..05fca4a2f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt index 53faee448e..c7c3fc3a80 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt index 37c121783d..c58ee68193 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt index 8e0bd33a9e..3e39a7efa9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt index cdd6cd93aa..0efa7782e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt index d095a30ea4..2e03ef9959 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt index 22420354d1..6cec82833d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt index 4b716bbd69..e49cb0bd5b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt index d5ff7d1928..3e7467fb8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt index 1223dbb0fc..fec7c29b74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt index 615a9185ab..cfb392527f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt index d7e17cce1c..21883227dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt index f74ce5c98f..74d47121cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt index a8f58bc93e..b4bbfb87da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt index 6ea186a3ab..85767a922f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt index 59a8cebda0..671168251e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt index 928419101a..cd48e673d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt index d03b9b654d..ff99c50e0a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt index 5dfd2790f1..249f2687e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt index dfd4bc8c1e..bf5fad6d2f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt index 894c3002e3..517ad96325 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt index 0054fb10ad..d3b7eceae6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt index c17acf7553..0777e73080 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt index 782c6ef289..33d8f6ceca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt index 60ec2f5b2c..b2f7599fda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt index e47b435561..bcc3f34c2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt index 40779e7b09..2dd58c64e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt index 82dee63959..465b33658d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt index 9be84ab991..9187df561b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt index 684258c0ed..c311860e48 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt index 1ee4105bad..4a9d4190a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt index af39917945..44f22055dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt index 0931c93dc0..0f98aa0cd8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt index 65554ae714..a1981cdab9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt index 0ff0cd231c..0ed1ba97be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt index b04b8892b9..032b46df11 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt index 0afc8e816d..9a537b8c9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt index 4d23d90255..f3e900ca72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt index 8a0b25bcb1..b475208415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt index e173ceaf10..36494ddd78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt index b38c1645d1..12eacd1e08 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt index 7f1ac40808..cb1d382544 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt index 63a380d71f..4e8f7173cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt index 511316fe86..1d1313f54c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt index 9d76e1a89e..7007d58e06 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt index daecf9b41d..d280310b62 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt index 447c4c7032..1ccc6b3407 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt index fe57003c24..147ed86ecd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt index c27fb5a7d1..c1e80295bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt index 6e7770dc6e..7ef0e35606 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt index 6459193eea..a87c616a21 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt index 174da9a421..7c2b894abc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt index b76a46b51a..52d0052a43 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt index f7c027dcf5..5a0a6ab105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt index 7dd5844498..0f59d91033 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt index daf8ac9426..12afd564a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt index 4f42bf5c54..da34e35aca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt index ac75b3e2d3..422288915d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt index 933e41f385..46f05a9ae3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt index 8e7bfd18e1..4e61e0910e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt index c00ab66882..b6fce40a03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt index 48dd92768e..3c5d443d47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt index 23cbbf88c8..f71121ca5c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt index ee330ebae9..9df018c9e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt index b79172090f..9072739f25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt index 3940312fef..0df3c5e876 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt index b7064185bb..07580369f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt index d2e264d6cf..d36db2e554 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt index a4d4e904d9..3ffb2c5395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt index abc7731cf5..d97afe19be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt index 363e6db013..d5829844cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt index 1c7d7d0683..bbfa5eccac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt index b72e281e87..06965640db 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt index 3d121abe8e..e6ede0c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt index 2f09e739a2..a58159562c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt index a58dceba78..e6c88803b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt index a7c3f0e54b..cc9682de1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt index 769c3c87ca..0f2a1fd739 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt index cf53fc59e4..5f1357d807 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt index be014bcbf1..7afb43097c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt index ac4c280c16..6a3efdda3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt index 4d57790750..96d0e667aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt index 3f8399035c..e2555df35e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt index 48a7cf841b..170c51c598 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt index 93ac1b946e..0ba81b4ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt index a80e2e5940..8d5d084136 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt index 203b87cafc..5fc2e84382 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt index a0ed5beabb..ab34f372f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt index 0eac51df19..c8f4130f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt index 705fccaae8..033d2b7941 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt index e60e621047..34750068d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt index 55b939619e..3a590a87ed 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt index e53f195d09..cd991108d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt index 18a2a21009..579cd059c7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt index 82c082e019..77be686643 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt index 8c84394d9a..75ddbb0faa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt index acecec40d2..d2ba773019 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt index f196491e20..9dcbbe37e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt index 022b1dfe99..3f74030d8f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt index a60e7ae871..59424c78c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt index 5d979ec64d..a9051f551f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt index 7eb8d739c4..e1f50ed978 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt index 0efd4775e3..364650af83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt index 8c582ba4ee..181e9a0d03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt index a16b0e8e66..30435dc1da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt index 6c8374d2d3..466bdebdab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt index f5ce1e4155..09cedd8d91 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt index 5999d71073..ac0c09d41b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt index 689978f278..e1afca9e25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt index da50ccc180..e206ac1758 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt index d81d6ff618..7173816564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt index cd382811cb..02f1a4f1eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt index 21350333f3..d80a2efebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt index 8d65db2adb..828ee3bb9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt index 7ec3478439..68cad9ba4c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt index 2e51bb7cdc..99c4862f96 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt index 9088c3b2bb..5435bad811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt index e3f53df2ee..ba97b07c4a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt index b32e5c1371..86888ff699 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt index e9267dcce0..eddfce6297 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt index 8b48b420e4..411fbf99bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt index a611f18e26..97f2974ad5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt index fe090ca7ec..a6a40978f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt index 7ed14598f1..f737724244 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt index b9d2cfc642..3fcbda77c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt index 64f0734d43..777739ae9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt index d0e5e72cf1..a7b69ef6a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt index 1c6645086f..115d7a895b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt index 35a5e89304..1b939f7323 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt index 6a6064b921..832ed094b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt index 50356f16af..8060e0ce1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt index 2f066453e5..2ac1cc678d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt index f221d8fd95..cbacce5eca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt index 2de779d724..9d3bfa1b60 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt index b201ab4fa4..95903c7d74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt index 9d3faef6be..cfd3f4802e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt index 322ec96628..6db1e602aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt index f62bb88522..28e9ca4a16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt index c9fed419b7..a97779aee7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt index 0401ae9eb3..d70eb2ac52 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt index c35abb9cf4..cf37859a1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt index b347cff183..8b15ba5069 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt index 8527f46115..57637cfd9e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt index 6a3c91301d..b6f5eefb71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt index 031f03666e..4912a123e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt index af72bc301e..1823e02934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt index 53e6960a01..59ee98d74a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt index 2ab17d31ae..a00570c2b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt index 3327175f25..59eb2b3e3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt index 50b2023747..c7757ff553 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt index 2c31796bef..43eaa290bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt index 655336ea9e..d553001d3f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt index d63a4de74a..7f4fa79074 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt index 62aae92969..731bef4b40 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt index 2a718cfcc1..7fb36653ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt index 166ccda341..7352c159f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt index ef57a549a0..c20f49acc5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt index fed68e627a..a5bb7cbd9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt index cb1fac193e..e8c4f884bf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt index 45bdbd52d1..551985f4c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt index c802031b32..6628e276dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt index a23a17ea57..3b4ff0779c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt index 53cc947e28..51f5e66339 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt index 50fb89a635..a2ad670082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt index 6bc4fbf1cc..d5ad36b27a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt index 0fca8a4fc0..7f1a4c9894 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt index 947b381929..1df52c5979 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt index 9df48e417b..cee6c4e452 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt index 2d2ee6d560..e307eaca2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt index 935a94c234..40c1cd604a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt index 1afb89d6a5..84c537fdcb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt index 819c0e361d..d1fb038be3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt index 33e2390cc6..c6352b3346 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt index 41c256fbf1..39db5da00b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt index 68871feac9..b94aa378de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt index 69f6b032e3..580d89af73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt index 4c236b9d97..6ef7e58875 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt index ae7bcef487..7a1191debe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt index 9b5408f03b..23f11aa976 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt index 232ef93296..f289df8e5f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt index 059bf64e83..1069b68409 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt index f5f8194fd5..08a7722d2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt index 635d50551c..3086037aa1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt index 76d9c6cf39..5f8cb0e02c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt index 5172b47797..5819461e8b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt index 46159e6989..0adbc29ad1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt index a8a6d9bd5e..baa7561652 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt index 581fe0c4fb..05ce745a83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt index 6ef290f2cf..0bc52007bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt index 5993455cd4..bfb3299d42 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt index a52944fff5..5f1a4d9179 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt index 2c51c05aff..1c2bdefd70 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt index 4590729110..644cd141aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt index 567e6afa2a..fd2f0fa871 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt index 5c3562dc5a..bfcf2d852b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt index 4a1309a578..efc56831ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt index 44d14baf36..fe2597e0d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt index a135b0c16e..063b8cad6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt index 03f782ed64..7201d5e958 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt index e150c64637..a9fa7d6e9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt index dc018396e3..1b3dfc0ee5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt index df8d1dd9f1..2d9fffa9f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt index 96d1fab7bb..04a1bd1a9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt index 53809f62a5..49ddb80cd3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt index 92dff3b307..67aa5eec16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt index df9abbeb97..5070da426a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt index 57686bb650..a00e266f7d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt index abc7fa4335..ad02d82fb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt index 086f86b4f0..99a18d236c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt index 1b84f1b0e5..0baff1b2f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt index d80ae1217f..b2f2a4d39c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt index 03ea6fd3c1..1c381a25a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt index 27e86b3237..9fc510982a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt index 80f67f98ca..3d05544669 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt index f86618b42e..f18a4f063f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt index 25b613e8d3..c6f852cdd5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt index 5992e7c3a9..78ac441301 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt index 3e4067fbd6..b353dbc27f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt index d3efd1dc9f..f90e959e35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt index fe3538a85a..8243d52415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt index 4b478801c3..d09319bdda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt index ad3f89e6e8..bd6750ba58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt index f888064ed6..2ab25bac27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt index 2ea7952b4a..b02ff5433d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt index 895db26a5e..22f3184ca9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt index 0c770b473e..a1bd8c6a56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt index e345749d3b..e645957907 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt index 1ce5a7fddc..47c7752105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt index 8f51672035..06114e6264 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt index 20323ca202..0398457c17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt index e77f9212c5..7106b78628 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt index 6c71814ad1..966adbb6f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt index e4807f1951..7ed3ede3f5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt index 777d84149a..256620c88b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt index 8c8baa9639..4bcfc072ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt index bda1362424..3badd6c266 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt index 2e6b3977e7..d861b93321 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt index 3c4b7420ca..de916a837e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt index a11139a75e..7efa2af902 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt index 76d4cee311..d0337545ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt index d040e4dded..d6ef7b9524 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt index 4c0364513a..27a23d2f6d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt index 98e2df02bd..d89fc51b0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt index 39096a60c8..544d9defe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt index c27e03a689..64b9dc3507 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt index c0e5a72b61..a3df612a46 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt index 537f0dc3c2..d06bd04004 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt index 2c19dd6316..a30932af57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt index 3237e3310f..6f2acb5122 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt index 587a1adc89..634cf9339e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt index f1421306b7..ad227b534b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt index 413f85f7d7..78880109e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt index 82693d0cc2..05fca4a2f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt index 53faee448e..c7c3fc3a80 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt index 37c121783d..c58ee68193 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt index 8e0bd33a9e..3e39a7efa9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt index cdd6cd93aa..0efa7782e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt index d095a30ea4..2e03ef9959 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt index 22420354d1..6cec82833d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt index 4b716bbd69..e49cb0bd5b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt index d5ff7d1928..3e7467fb8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt index 1223dbb0fc..fec7c29b74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt index 615a9185ab..cfb392527f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt index d7e17cce1c..21883227dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt index f74ce5c98f..74d47121cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt index a8f58bc93e..b4bbfb87da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt index 6ea186a3ab..85767a922f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt index 59a8cebda0..671168251e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt index 928419101a..cd48e673d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt index d03b9b654d..ff99c50e0a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt index 5dfd2790f1..249f2687e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt index dfd4bc8c1e..bf5fad6d2f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt index 894c3002e3..517ad96325 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt index 0054fb10ad..d3b7eceae6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt index c17acf7553..0777e73080 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt index 782c6ef289..33d8f6ceca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt index 60ec2f5b2c..b2f7599fda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt index e47b435561..bcc3f34c2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt index 40779e7b09..2dd58c64e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt index 82dee63959..465b33658d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt index 9be84ab991..9187df561b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt index 684258c0ed..c311860e48 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt index 1ee4105bad..4a9d4190a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt index af39917945..44f22055dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt index 0931c93dc0..0f98aa0cd8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt index 65554ae714..a1981cdab9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt index 0ff0cd231c..0ed1ba97be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt index b04b8892b9..032b46df11 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt index 0afc8e816d..9a537b8c9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt index 4d23d90255..f3e900ca72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt index 8a0b25bcb1..b475208415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt index e173ceaf10..36494ddd78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt index b38c1645d1..12eacd1e08 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt index 7f1ac40808..cb1d382544 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt index 63a380d71f..4e8f7173cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt index 511316fe86..1d1313f54c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt index 9d76e1a89e..7007d58e06 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt index daecf9b41d..d280310b62 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt index 447c4c7032..1ccc6b3407 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt index fe57003c24..147ed86ecd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt index c27fb5a7d1..c1e80295bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt index 6e7770dc6e..7ef0e35606 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt index 6459193eea..a87c616a21 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt index 174da9a421..7c2b894abc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt index b76a46b51a..52d0052a43 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt index f7c027dcf5..5a0a6ab105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt index 7dd5844498..0f59d91033 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt index daf8ac9426..12afd564a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt index 4f42bf5c54..da34e35aca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt index ac75b3e2d3..422288915d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt index 933e41f385..46f05a9ae3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt index 8e7bfd18e1..4e61e0910e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt index c00ab66882..b6fce40a03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt index 48dd92768e..3c5d443d47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt index 23cbbf88c8..f71121ca5c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt index ee330ebae9..9df018c9e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt index b79172090f..9072739f25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt index 3940312fef..0df3c5e876 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt index b7064185bb..07580369f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt index d2e264d6cf..d36db2e554 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt index a4d4e904d9..3ffb2c5395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt index abc7731cf5..d97afe19be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt index 363e6db013..d5829844cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt index 1c7d7d0683..bbfa5eccac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt index b72e281e87..06965640db 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt index 3d121abe8e..e6ede0c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt index 2f09e739a2..a58159562c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt index a58dceba78..e6c88803b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt index a7c3f0e54b..cc9682de1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt index 769c3c87ca..0f2a1fd739 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt index cf53fc59e4..5f1357d807 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt index be014bcbf1..7afb43097c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt index ac4c280c16..6a3efdda3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt index 4d57790750..96d0e667aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt index 3f8399035c..e2555df35e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt index 48a7cf841b..170c51c598 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt index 93ac1b946e..0ba81b4ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt index a80e2e5940..8d5d084136 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt index 203b87cafc..5fc2e84382 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt index a0ed5beabb..ab34f372f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt index 0eac51df19..c8f4130f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt index 705fccaae8..033d2b7941 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt index e60e621047..34750068d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt index 55b939619e..3a590a87ed 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt index e53f195d09..cd991108d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt index 18a2a21009..579cd059c7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt index 82c082e019..77be686643 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt index 8c84394d9a..75ddbb0faa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt index acecec40d2..d2ba773019 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt index f196491e20..9dcbbe37e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt index 022b1dfe99..3f74030d8f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt index a60e7ae871..59424c78c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt index 5d979ec64d..a9051f551f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt index 7eb8d739c4..e1f50ed978 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt index 0efd4775e3..364650af83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt index 8c582ba4ee..181e9a0d03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt index a16b0e8e66..30435dc1da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt index 6c8374d2d3..466bdebdab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt index f5ce1e4155..09cedd8d91 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt index 5999d71073..ac0c09d41b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt index 689978f278..e1afca9e25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt index da50ccc180..e206ac1758 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt index d81d6ff618..7173816564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt index cd382811cb..02f1a4f1eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt index 21350333f3..d80a2efebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt index 8d65db2adb..828ee3bb9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt index 7ec3478439..68cad9ba4c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt index 2e51bb7cdc..99c4862f96 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt index 9088c3b2bb..5435bad811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt index e3f53df2ee..ba97b07c4a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt index b32e5c1371..86888ff699 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt index e9267dcce0..eddfce6297 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt index 8b48b420e4..411fbf99bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt index a611f18e26..97f2974ad5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v5.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt index fe090ca7ec..a6a40978f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt index 7ed14598f1..f737724244 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt index b9d2cfc642..3fcbda77c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt index 64f0734d43..777739ae9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt index d0e5e72cf1..a7b69ef6a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt index 1c6645086f..115d7a895b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt index 35a5e89304..1b939f7323 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt index 6a6064b921..832ed094b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt index 50356f16af..8060e0ce1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt index 2f066453e5..2ac1cc678d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt index f221d8fd95..cbacce5eca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt index 2de779d724..9d3bfa1b60 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt index b201ab4fa4..95903c7d74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt index 9d3faef6be..cfd3f4802e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt index 322ec96628..6db1e602aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt index f62bb88522..28e9ca4a16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt index c9fed419b7..a97779aee7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt index 0401ae9eb3..d70eb2ac52 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt index c35abb9cf4..cf37859a1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt index b347cff183..8b15ba5069 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt index 8527f46115..57637cfd9e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt index 6a3c91301d..b6f5eefb71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt index 031f03666e..4912a123e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt index af72bc301e..1823e02934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt index 53e6960a01..59ee98d74a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt index 2ab17d31ae..a00570c2b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt index 3327175f25..59eb2b3e3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt index 50b2023747..c7757ff553 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt index 2c31796bef..43eaa290bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt index 655336ea9e..d553001d3f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt index d63a4de74a..7f4fa79074 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt index 62aae92969..731bef4b40 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt index 2a718cfcc1..7fb36653ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt index 166ccda341..7352c159f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt index ef57a549a0..c20f49acc5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt index fed68e627a..a5bb7cbd9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt index cb1fac193e..e8c4f884bf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt index 45bdbd52d1..551985f4c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt index c802031b32..6628e276dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt index a23a17ea57..3b4ff0779c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt index 53cc947e28..51f5e66339 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt index 50fb89a635..a2ad670082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt index 6bc4fbf1cc..d5ad36b27a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt index 0fca8a4fc0..7f1a4c9894 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt index 947b381929..1df52c5979 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt index 9df48e417b..cee6c4e452 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt index 2d2ee6d560..e307eaca2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt index 935a94c234..40c1cd604a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt index 1afb89d6a5..84c537fdcb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt index 819c0e361d..d1fb038be3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt index 33e2390cc6..c6352b3346 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt index 41c256fbf1..39db5da00b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt index 68871feac9..b94aa378de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt index 69f6b032e3..580d89af73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt index 4c236b9d97..6ef7e58875 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt index ae7bcef487..7a1191debe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt index 9b5408f03b..23f11aa976 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt index 232ef93296..f289df8e5f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt index 059bf64e83..1069b68409 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt index f5f8194fd5..08a7722d2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt index 635d50551c..3086037aa1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt index 76d9c6cf39..5f8cb0e02c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt index 5172b47797..5819461e8b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt index 46159e6989..0adbc29ad1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt index a8a6d9bd5e..baa7561652 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt index 581fe0c4fb..05ce745a83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt index 6ef290f2cf..0bc52007bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt index 5993455cd4..bfb3299d42 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt index a52944fff5..5f1a4d9179 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt index 2c51c05aff..1c2bdefd70 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt index 4590729110..644cd141aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt index 567e6afa2a..fd2f0fa871 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt index 5c3562dc5a..bfcf2d852b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt index 4a1309a578..efc56831ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt index 44d14baf36..fe2597e0d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt index a135b0c16e..063b8cad6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt index 03f782ed64..7201d5e958 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt index e150c64637..a9fa7d6e9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt index dc018396e3..1b3dfc0ee5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt index df8d1dd9f1..2d9fffa9f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt index 96d1fab7bb..04a1bd1a9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt index 53809f62a5..49ddb80cd3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt index 92dff3b307..67aa5eec16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt index df9abbeb97..5070da426a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt index 57686bb650..a00e266f7d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt index abc7fa4335..ad02d82fb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt index 086f86b4f0..99a18d236c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt index 1b84f1b0e5..0baff1b2f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt index d80ae1217f..b2f2a4d39c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt index 03ea6fd3c1..1c381a25a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt index 27e86b3237..9fc510982a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt index 80f67f98ca..3d05544669 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt index f86618b42e..f18a4f063f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt index 25b613e8d3..c6f852cdd5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt index 5992e7c3a9..78ac441301 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt index 3e4067fbd6..b353dbc27f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt index d3efd1dc9f..f90e959e35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt index fe3538a85a..8243d52415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt index 4b478801c3..d09319bdda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt index ad3f89e6e8..bd6750ba58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt index f888064ed6..2ab25bac27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt index 2ea7952b4a..b02ff5433d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt index 895db26a5e..22f3184ca9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt index 0c770b473e..a1bd8c6a56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt index e345749d3b..e645957907 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt index 1ce5a7fddc..47c7752105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt index 8f51672035..06114e6264 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt index 20323ca202..0398457c17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt index e77f9212c5..7106b78628 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt index 6c71814ad1..966adbb6f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt index e4807f1951..7ed3ede3f5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt index 777d84149a..256620c88b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt index 8c8baa9639..4bcfc072ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt index bda1362424..3badd6c266 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt index 2e6b3977e7..d861b93321 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt index 3c4b7420ca..de916a837e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt index a11139a75e..7efa2af902 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt index 76d4cee311..d0337545ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt index d040e4dded..d6ef7b9524 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt index 4c0364513a..27a23d2f6d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt index 98e2df02bd..d89fc51b0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt index 39096a60c8..544d9defe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt index c27e03a689..64b9dc3507 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt index c0e5a72b61..a3df612a46 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt index 537f0dc3c2..d06bd04004 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt index 2c19dd6316..a30932af57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt index 3237e3310f..6f2acb5122 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt index 587a1adc89..634cf9339e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt index f1421306b7..ad227b534b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt index 413f85f7d7..78880109e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt index 82693d0cc2..05fca4a2f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt index 53faee448e..c7c3fc3a80 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt index 37c121783d..c58ee68193 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt index 8e0bd33a9e..3e39a7efa9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt index cdd6cd93aa..0efa7782e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt index d095a30ea4..2e03ef9959 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt index 22420354d1..6cec82833d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt index 4b716bbd69..e49cb0bd5b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt index d5ff7d1928..3e7467fb8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt index 1223dbb0fc..fec7c29b74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt index 615a9185ab..cfb392527f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt index d7e17cce1c..21883227dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt index f74ce5c98f..74d47121cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt index a8f58bc93e..b4bbfb87da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt index 6ea186a3ab..85767a922f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt index 59a8cebda0..671168251e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt index 928419101a..cd48e673d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt index d03b9b654d..ff99c50e0a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt index 5dfd2790f1..249f2687e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt index dfd4bc8c1e..bf5fad6d2f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt index 894c3002e3..517ad96325 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt index 0054fb10ad..d3b7eceae6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt index c17acf7553..0777e73080 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt index 782c6ef289..33d8f6ceca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt index 60ec2f5b2c..b2f7599fda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt index e47b435561..bcc3f34c2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt index 40779e7b09..2dd58c64e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt index 82dee63959..465b33658d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt index 9be84ab991..9187df561b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt index 684258c0ed..c311860e48 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt index 1ee4105bad..4a9d4190a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt index af39917945..44f22055dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt index 0931c93dc0..0f98aa0cd8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt index 65554ae714..a1981cdab9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt index 0ff0cd231c..0ed1ba97be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt index b04b8892b9..032b46df11 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt index 0afc8e816d..9a537b8c9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt index 4d23d90255..f3e900ca72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt index 8a0b25bcb1..b475208415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt index e173ceaf10..36494ddd78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt index b38c1645d1..12eacd1e08 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt index 7f1ac40808..cb1d382544 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt index 63a380d71f..4e8f7173cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt index 511316fe86..1d1313f54c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt index 9d76e1a89e..7007d58e06 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt index daecf9b41d..d280310b62 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt index 447c4c7032..1ccc6b3407 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt index fe57003c24..147ed86ecd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt index c27fb5a7d1..c1e80295bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt index 6e7770dc6e..7ef0e35606 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt index 6459193eea..a87c616a21 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt index 174da9a421..7c2b894abc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt index b76a46b51a..52d0052a43 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt index f7c027dcf5..5a0a6ab105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt index 7dd5844498..0f59d91033 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt index daf8ac9426..12afd564a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt index 4f42bf5c54..da34e35aca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt index ac75b3e2d3..422288915d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt index 933e41f385..46f05a9ae3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt index 8e7bfd18e1..4e61e0910e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt index c00ab66882..b6fce40a03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt index 48dd92768e..3c5d443d47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt index 23cbbf88c8..f71121ca5c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt index ee330ebae9..9df018c9e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt index b79172090f..9072739f25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt index 3940312fef..0df3c5e876 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt index b7064185bb..07580369f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt index d2e264d6cf..d36db2e554 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt index a4d4e904d9..3ffb2c5395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt index abc7731cf5..d97afe19be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt index 363e6db013..d5829844cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt index 1c7d7d0683..bbfa5eccac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt index b72e281e87..06965640db 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt index 3d121abe8e..e6ede0c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt index 2f09e739a2..a58159562c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt index a58dceba78..e6c88803b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt index a7c3f0e54b..cc9682de1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt index 769c3c87ca..0f2a1fd739 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt index cf53fc59e4..5f1357d807 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt index be014bcbf1..7afb43097c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt index ac4c280c16..6a3efdda3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt index 4d57790750..96d0e667aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt index 3f8399035c..e2555df35e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt index 48a7cf841b..170c51c598 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt index 93ac1b946e..0ba81b4ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt index a80e2e5940..8d5d084136 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt index 203b87cafc..5fc2e84382 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt index a0ed5beabb..ab34f372f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt index 0eac51df19..c8f4130f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt index 705fccaae8..033d2b7941 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt index e60e621047..34750068d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt index 55b939619e..3a590a87ed 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt index e53f195d09..cd991108d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt index 18a2a21009..579cd059c7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt index 82c082e019..77be686643 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt index 8c84394d9a..75ddbb0faa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt index acecec40d2..d2ba773019 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt index f196491e20..9dcbbe37e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt index 022b1dfe99..3f74030d8f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt index a60e7ae871..59424c78c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt index 5d979ec64d..a9051f551f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt index 7eb8d739c4..e1f50ed978 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt index 0efd4775e3..364650af83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt index 8c582ba4ee..181e9a0d03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt index a16b0e8e66..30435dc1da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt index 6c8374d2d3..466bdebdab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt index f5ce1e4155..09cedd8d91 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt index 5999d71073..ac0c09d41b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt index 689978f278..e1afca9e25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt index da50ccc180..e206ac1758 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt index d81d6ff618..7173816564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt index cd382811cb..02f1a4f1eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt index 21350333f3..d80a2efebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt index 8d65db2adb..828ee3bb9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt index 7ec3478439..68cad9ba4c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt index 2e51bb7cdc..99c4862f96 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt index 9088c3b2bb..5435bad811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt index e3f53df2ee..ba97b07c4a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt index b32e5c1371..86888ff699 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt index e9267dcce0..eddfce6297 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt index 8b48b420e4..411fbf99bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt index a611f18e26..97f2974ad5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt index fe090ca7ec..a6a40978f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt index 7ed14598f1..f737724244 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt index b9d2cfc642..3fcbda77c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt index 64f0734d43..777739ae9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt index d0e5e72cf1..a7b69ef6a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt index 1c6645086f..115d7a895b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt index 35a5e89304..1b939f7323 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt index 6a6064b921..832ed094b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt index 50356f16af..8060e0ce1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt index 2f066453e5..2ac1cc678d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt index f221d8fd95..cbacce5eca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt index 2de779d724..9d3bfa1b60 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt index b201ab4fa4..95903c7d74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt index 9d3faef6be..cfd3f4802e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt index 322ec96628..6db1e602aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt index f62bb88522..28e9ca4a16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt index c9fed419b7..a97779aee7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt index 0401ae9eb3..d70eb2ac52 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt index c35abb9cf4..cf37859a1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt index b347cff183..8b15ba5069 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt index 8527f46115..57637cfd9e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt index 6a3c91301d..b6f5eefb71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt index 031f03666e..4912a123e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt index af72bc301e..1823e02934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt index 53e6960a01..59ee98d74a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt index 2ab17d31ae..a00570c2b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt index 3327175f25..59eb2b3e3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt index 50b2023747..c7757ff553 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt index 2c31796bef..43eaa290bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt index 655336ea9e..d553001d3f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt index d63a4de74a..7f4fa79074 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt index 62aae92969..731bef4b40 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt index 2a718cfcc1..7fb36653ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt index 166ccda341..7352c159f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt index ef57a549a0..c20f49acc5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt index fed68e627a..a5bb7cbd9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt index cb1fac193e..e8c4f884bf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt index 45bdbd52d1..551985f4c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt index c802031b32..6628e276dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt index a23a17ea57..3b4ff0779c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt index 53cc947e28..51f5e66339 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt index 50fb89a635..a2ad670082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt index 6bc4fbf1cc..d5ad36b27a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt index 0fca8a4fc0..7f1a4c9894 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt index 947b381929..1df52c5979 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt index 9df48e417b..cee6c4e452 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt index 2d2ee6d560..e307eaca2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt index 935a94c234..40c1cd604a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt index 1afb89d6a5..84c537fdcb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt index 819c0e361d..d1fb038be3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt index 33e2390cc6..c6352b3346 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt index 41c256fbf1..39db5da00b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt index 68871feac9..b94aa378de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt index 69f6b032e3..580d89af73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt index 4c236b9d97..6ef7e58875 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt index ae7bcef487..7a1191debe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt index 9b5408f03b..23f11aa976 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt index 232ef93296..f289df8e5f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt index 059bf64e83..1069b68409 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt index f5f8194fd5..08a7722d2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt index 635d50551c..3086037aa1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt index 76d9c6cf39..5f8cb0e02c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt index 5172b47797..5819461e8b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt index 46159e6989..0adbc29ad1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt index a8a6d9bd5e..baa7561652 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt index 581fe0c4fb..05ce745a83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt index 6ef290f2cf..0bc52007bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt index 5993455cd4..bfb3299d42 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt index a52944fff5..5f1a4d9179 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt index 2c51c05aff..1c2bdefd70 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt index 4590729110..644cd141aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt index 567e6afa2a..fd2f0fa871 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt index 5c3562dc5a..bfcf2d852b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt index 4a1309a578..efc56831ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt index 44d14baf36..fe2597e0d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt index a135b0c16e..063b8cad6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt index 03f782ed64..7201d5e958 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt index e150c64637..a9fa7d6e9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt index dc018396e3..1b3dfc0ee5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt index df8d1dd9f1..2d9fffa9f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt index 96d1fab7bb..04a1bd1a9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt index 53809f62a5..49ddb80cd3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt index 92dff3b307..67aa5eec16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt index df9abbeb97..5070da426a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt index 57686bb650..a00e266f7d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt index abc7fa4335..ad02d82fb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt index 086f86b4f0..99a18d236c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt index 1b84f1b0e5..0baff1b2f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt index d80ae1217f..b2f2a4d39c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt index 03ea6fd3c1..1c381a25a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt index 27e86b3237..9fc510982a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt index 80f67f98ca..3d05544669 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt index f86618b42e..f18a4f063f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt index 25b613e8d3..c6f852cdd5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt index 5992e7c3a9..78ac441301 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt index 3e4067fbd6..b353dbc27f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt index d3efd1dc9f..f90e959e35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt index fe3538a85a..8243d52415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt index 4b478801c3..d09319bdda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt index ad3f89e6e8..bd6750ba58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt index f888064ed6..2ab25bac27 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt index 2ea7952b4a..b02ff5433d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt index 895db26a5e..22f3184ca9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt index 0c770b473e..a1bd8c6a56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt index e345749d3b..e645957907 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt index 1ce5a7fddc..47c7752105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt index 8f51672035..06114e6264 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt index 20323ca202..0398457c17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt index e77f9212c5..7106b78628 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt index 6c71814ad1..966adbb6f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt index e4807f1951..7ed3ede3f5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt index 777d84149a..256620c88b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt index 8c8baa9639..4bcfc072ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt index bda1362424..3badd6c266 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt index 2e6b3977e7..d861b93321 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt index 3c4b7420ca..de916a837e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt index a11139a75e..7efa2af902 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt index 76d4cee311..d0337545ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt index d040e4dded..d6ef7b9524 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt index 4c0364513a..27a23d2f6d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt index 98e2df02bd..d89fc51b0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt index 39096a60c8..544d9defe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt index c27e03a689..64b9dc3507 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt index c0e5a72b61..a3df612a46 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt index 537f0dc3c2..d06bd04004 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt index 2c19dd6316..a30932af57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt index 3237e3310f..6f2acb5122 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt index 587a1adc89..634cf9339e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt index f1421306b7..ad227b534b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt index 413f85f7d7..78880109e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt index 82693d0cc2..05fca4a2f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt index 53faee448e..c7c3fc3a80 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt index 37c121783d..c58ee68193 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt index 8e0bd33a9e..3e39a7efa9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt index cdd6cd93aa..0efa7782e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt index d095a30ea4..2e03ef9959 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt index 22420354d1..6cec82833d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt index 4b716bbd69..e49cb0bd5b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt index d5ff7d1928..3e7467fb8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt index 1223dbb0fc..fec7c29b74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt index 615a9185ab..cfb392527f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt index d7e17cce1c..21883227dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt index f74ce5c98f..74d47121cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt index a8f58bc93e..b4bbfb87da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt index 6ea186a3ab..85767a922f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt index 59a8cebda0..671168251e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt index 928419101a..cd48e673d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt index d03b9b654d..ff99c50e0a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt index 5dfd2790f1..249f2687e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt index dfd4bc8c1e..bf5fad6d2f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt index 894c3002e3..517ad96325 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt index 0054fb10ad..d3b7eceae6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt index c17acf7553..0777e73080 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt index 782c6ef289..33d8f6ceca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt index 60ec2f5b2c..b2f7599fda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt index e47b435561..bcc3f34c2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt index 40779e7b09..2dd58c64e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt index 82dee63959..465b33658d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt index 9be84ab991..9187df561b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt index 684258c0ed..c311860e48 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt index 1ee4105bad..4a9d4190a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt index af39917945..44f22055dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt index 0931c93dc0..0f98aa0cd8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt index 65554ae714..a1981cdab9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt index 0ff0cd231c..0ed1ba97be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt index b04b8892b9..032b46df11 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt index 0afc8e816d..9a537b8c9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt index 4d23d90255..f3e900ca72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt index 8a0b25bcb1..b475208415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt index e173ceaf10..36494ddd78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt index b38c1645d1..12eacd1e08 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt index 7f1ac40808..cb1d382544 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt index 63a380d71f..4e8f7173cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt index 511316fe86..1d1313f54c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt index 9d76e1a89e..7007d58e06 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt index daecf9b41d..d280310b62 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt index 447c4c7032..1ccc6b3407 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt index fe57003c24..147ed86ecd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt index c27fb5a7d1..c1e80295bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt index 6e7770dc6e..7ef0e35606 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt index 6459193eea..a87c616a21 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt index 174da9a421..7c2b894abc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt index b76a46b51a..52d0052a43 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt index f7c027dcf5..5a0a6ab105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt index 7dd5844498..0f59d91033 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt index daf8ac9426..12afd564a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt index 4f42bf5c54..da34e35aca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt index ac75b3e2d3..422288915d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt index 933e41f385..46f05a9ae3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt index 8e7bfd18e1..4e61e0910e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt index c00ab66882..b6fce40a03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt index 48dd92768e..3c5d443d47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt index 23cbbf88c8..f71121ca5c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt index ee330ebae9..9df018c9e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt index b79172090f..9072739f25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt index 3940312fef..0df3c5e876 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt index b7064185bb..07580369f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt index d2e264d6cf..d36db2e554 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt index a4d4e904d9..3ffb2c5395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt index abc7731cf5..d97afe19be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt index 363e6db013..d5829844cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt index 1c7d7d0683..bbfa5eccac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt index b72e281e87..06965640db 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt index 3d121abe8e..e6ede0c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt index 2f09e739a2..a58159562c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt index a58dceba78..e6c88803b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt index a7c3f0e54b..cc9682de1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt index 769c3c87ca..0f2a1fd739 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt index cf53fc59e4..5f1357d807 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt index be014bcbf1..7afb43097c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt index ac4c280c16..6a3efdda3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt index 4d57790750..96d0e667aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt index 3f8399035c..e2555df35e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt index 48a7cf841b..170c51c598 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt index 93ac1b946e..0ba81b4ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt index a80e2e5940..8d5d084136 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt index 203b87cafc..5fc2e84382 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt index a0ed5beabb..ab34f372f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt index 0eac51df19..c8f4130f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt index 705fccaae8..033d2b7941 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt index e60e621047..34750068d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt index 55b939619e..3a590a87ed 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt index e53f195d09..cd991108d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt index 18a2a21009..579cd059c7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt index 82c082e019..77be686643 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt index 8c84394d9a..75ddbb0faa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt index acecec40d2..d2ba773019 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt index f196491e20..9dcbbe37e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt index 022b1dfe99..3f74030d8f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt index a60e7ae871..59424c78c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt index 5d979ec64d..a9051f551f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt index 7eb8d739c4..e1f50ed978 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt index 0efd4775e3..364650af83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt index 8c582ba4ee..181e9a0d03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt index a16b0e8e66..30435dc1da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt index 6c8374d2d3..466bdebdab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt index f5ce1e4155..09cedd8d91 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt index 5999d71073..ac0c09d41b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt index 689978f278..e1afca9e25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt index da50ccc180..e206ac1758 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt index d81d6ff618..7173816564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt index cd382811cb..02f1a4f1eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt index 21350333f3..d80a2efebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt index 8d65db2adb..828ee3bb9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt index 7ec3478439..68cad9ba4c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt index 2e51bb7cdc..99c4862f96 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt index 9088c3b2bb..5435bad811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt index e3f53df2ee..ba97b07c4a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt index b32e5c1371..86888ff699 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt index e9267dcce0..eddfce6297 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt index 8b48b420e4..411fbf99bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt index a611f18e26..97f2974ad5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v6.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt index 175cafeefc..e425d583cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt index e180115483..2bab95a464 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt index 33cc126e14..364493d8dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt index 64f0734d43..777739ae9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt index c6e1271be3..02a46063e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt index 06a22744b9..6af9b968fe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt index c7afe40176..6cd642f617 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt index 04260dbdac..477768fad3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt index e27c20c731..2540c8e7e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt index 61397c704f..9b4338dae4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt index 6e1539406e..0bfd0f026c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt index 4d69a3547f..b7778d9742 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt index dd3b48eb56..f28d236931 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt index 391d8ca2ea..b40afbc3c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt index ad5e5d306b..f313ba229b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt index 0f41a0e8b8..fe06c753cf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt index bf9bef2dff..ba724a5df6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt index 5b357de008..273bfda048 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt index b0b47e0cf0..b6572da1cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt index b26cd2a69b..fabc1c1e56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt index da7b63ff6c..5ac30f8488 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt index 87638a423d..7a142c0c99 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt index 031f03666e..4912a123e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt index af72bc301e..1823e02934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt index bd77ab4e34..6e720c28e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt index 2ab17d31ae..a00570c2b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt index ba1e065712..65c60001f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt index 86aee415f0..a9971139f4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt index 7ae0dbaadf..50191dd8c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt index 313bea23eb..642966046a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt index 64640c6490..8a88c04759 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt index 45c7efe0d4..1aea8d988d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt index 2a718cfcc1..7fb36653ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt index 55aab5128d..af3baac1a8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt index e78d3d3a96..b1dced9048 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt index 03598e1bca..e701281a63 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt index 0f9c277ca5..ef48e8a749 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt index bc7c235662..0cb2f3e527 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt index 68afeb1338..c966078000 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt index 79ff6e00f7..4f89b4db6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt index 697b763542..7329824eec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt index df7643601b..642408bd76 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt index a7706449a2..2ea33cd624 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt index c0590d6e52..6bad272157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt index fe0bfa3080..724084e696 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt index f6c42c9f6e..b6ea99179b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt index 2d2ee6d560..e307eaca2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt index 8f8428e3dd..a45f0a946f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt index e3cb1ee87a..221955c705 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt index 819c0e361d..d1fb038be3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt index 33e2390cc6..c6352b3346 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt index deef4a87d8..c4108a32ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt index 426e9e8653..57782239f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt index 10fd4e5b86..2ab0019ee6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt index fa343c4002..b026ce668d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt index b3a47e2223..13cb5bbbea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt index c9f8992028..9b6bf3ca18 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt index 4eaeba8a14..265f6942da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt index 21de08069d..4434e119cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt index 247eae56d1..ac7e3a99bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt index f90a9e239b..bde5980459 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt index 4949331be7..75fc858175 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt index f24420f2db..48db1262cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt index b4dd64afb5..4fed696ee2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt index a4f070de22..ec1b82bef7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt index ec54015341..c18040d020 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt index cc20d5a3b6..600ac908f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt index e626bd69ca..8ff65cf037 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt index deb3ac08fa..fc38b63cc8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt index 648d52978a..f93ee431e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt index a579d19591..2a064695fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt index 89026dfa71..b44b3cc115 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt index 5c3562dc5a..bfcf2d852b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt index 4a1309a578..efc56831ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt index 64c12272d4..6296a49965 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt index 1ef2064f2a..8c7b0d0f98 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt index 2cd70a03f5..ac490eac32 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt index e150c64637..a9fa7d6e9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt index dc018396e3..1b3dfc0ee5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt index c7d808a2c0..d12dbd59a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt index 89256c4579..2c1997f33e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt index d2500ab544..9b58737457 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt index 97a8027e62..8c28e56157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt index 1c94ea3ffd..6b8638a39b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt index 07d7597736..2767877603 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt index 86aed3769d..eefb1293f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt index 086f86b4f0..99a18d236c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt index 1b84f1b0e5..0baff1b2f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt index 955fd3e923..0eae6dcb7b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt index a5bee51235..54e6173681 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt index d84c7a8f32..2e97ef91dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt index 6ae7343b34..6736cc7ea9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt index d39090175b..5607ef126b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt index e54bc7e519..997f248843 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt index 404ffd13a6..e4003d4e98 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt index f12d2887af..b3a9843a8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt index bc3b1fe4f0..2a2a06963c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt index a6c600092e..b6c0adfb37 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt index 61b941bf3a..e36a60227f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt index ad3f89e6e8..bd6750ba58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt index a8df7f33a1..e2bbdc3cfb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt index 2ea7952b4a..b02ff5433d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt index 675482dd32..9a940df451 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt index 4dd67e5a5b..57b366d487 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt index dbb880ddf1..bfaa159d66 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt index 5dbbe8e166..8852460617 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt index 4aa1d6201e..68af559912 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt index a7a18f7950..320cc9a41c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt index 50f24a7955..03adf1c9da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt index a08829b5fe..eb21fe30c1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt index bfdb0cdbab..9b8555807a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt index 777d84149a..256620c88b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt index 7a09520099..650d891441 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt index a61d57efff..973ab03d87 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt index ede3207fc2..28828e599f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt index 3c4b7420ca..de916a837e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt index 34cf051eec..39110bf89a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt index 0890c11855..37c66cd121 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt index 2c24dd3c13..94d8262d35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt index f897b0aff6..eaa3301d51 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt index 70c9a777fd..465b76571b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt index 9d78269913..0c75151ba9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt index bf299d7e20..8ed1daf1e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt index 9794b01e59..fea13eda0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt index 685507a88f..53befc8df1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt index 7e1702b3d4..beae571e2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt index 79294b7249..1b271bd8c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt index 92abe2769a..d0b8450760 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt index 6da7fd4c52..d5da4886ab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt index 1938ebcf3d..2d9422ece8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt index 82693d0cc2..05fca4a2f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt index 7929ffd30f..4cf88af743 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt index 533592761e..85b364e4d2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt index a3944e8110..0fbdabb040 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt index 6bae0c8d46..32851cf2b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt index 5e00049e29..f52855408a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt index 4867defab9..42a11e9c73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt index 613dd7ae7b..69a62332f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt index 05199ff810..7154648c71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt index 4cc6f30508..1edff20771 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt index 85ab06adb7..7e3819cc24 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt index d7e17cce1c..21883227dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt index f74ce5c98f..74d47121cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt index 94ea86a104..00a67ac19e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt index 2fdb5cde49..74df48740b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt index 1cbc760759..4a1eb673be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt index 6182ce5485..8b5974cf6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt index 48cafff238..63a16cfbfc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt index 0d4a51810b..581f0af50e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt index 9c2a322d36..3ad1f996a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt index 9385a2aa9a..3c8caea221 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt index 1f3f0c5be6..a04490bac0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt index e70f48f9da..b099f18bba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt index 64cc3605a0..943e0d5172 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt index 3132047077..08299e878f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt index 64763278d0..d456867ce6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt index 8925adcdeb..e31f450460 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt index 4f5c130469..47d4728ee7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt index bac78d2ce9..011775ff33 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt index e676ffb0c3..14c27011c0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt index 368c52de4e..58bb86a5d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt index 849238fe19..4dfb1f2451 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt index 3fcbe42b69..749f332062 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt index 7ed8b2d745..ae7f184af2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt index c5df7668ca..3969254057 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt index 3586061c9d..cdffe0a114 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt index 93e669b739..179b9c4eb8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt index 5dcb11bdb2..9f45517258 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt index 8a0b25bcb1..b475208415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt index 29085177c5..8a33fb3102 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt index caee8647a1..6e798ceebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt index 7f1ac40808..cb1d382544 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt index f62681bc72..cab63cb197 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt index d77cba43f4..2863801a26 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt index 86cb508f17..f5855ed28e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt index eb5335f250..0734c6152b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt index 447c4c7032..1ccc6b3407 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt index 00b1340176..7f74c17f30 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt index df886dc5f7..20653a1f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt index c6104ac896..fe049c69b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt index a743d53ee6..97fe0c71d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt index 87eed6ad32..e2f61c01ec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt index f24b320301..aa693bcf8f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt index f7c027dcf5..5a0a6ab105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt index a99b60d143..e3710d079e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt index 4e858124bc..6434483eb7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt index e1cc552785..8e0586d846 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt index 40911e0b19..f32bd1ec64 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt index efeb8ec962..750fe0ceb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt index 8e7bfd18e1..4e61e0910e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt index 09ba38e28e..7a5bfbf63c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt index 6da7fb2471..098c35ffa7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt index 278c835288..46a0bfcb2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt index 5d9351c250..4fa82154e6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt index 13142df3fd..a4dd1d6448 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt index cc6b31d3a2..d98653c9ed 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt index b7064185bb..07580369f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt index d9c51cc426..8ab7976cea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt index a4d4e904d9..3ffb2c5395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt index afcdbfd497..4e9502b502 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt index 4737269a8c..5e93572bc6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt index b495a22288..4f6c32b73b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt index 883f201d27..cbabdf8a7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt index 60875cdc00..00690ec77d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt index 9e3922ae29..53abe6842c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt index dcacd3437b..836e687736 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt index eb0485701d..6466ea16d4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt index 1d693097c9..9bce8c07c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt index c7f59b3941..b18e44a54d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt index e9f272e227..2aba1d3421 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt index ac4c280c16..6a3efdda3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt index e2c06a26b6..0bebb51177 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt index 2a22021428..1d39f3d900 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt index 3226efa422..3e1c624d38 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt index 53e44208e4..fdff6257a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt index 51bdaa0e9f..70154284b6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt index 38b21a3b92..3306a97dea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt index e5f3db698c..38d1ac959d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt index 0eac51df19..c8f4130f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt index 705fccaae8..033d2b7941 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt index 884b91a3ac..25eb2b4bdb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt index 264f4b6f6d..d46e1440a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt index e8e4dec2a9..657fb47fc7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt index 5c1cfd955e..2b9988e6e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt index 3c3078b389..d9f6b5defc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt index 4d19a8ee3d..fe6e509594 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt index 39be46ce4b..e518574f6a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt index f196491e20..9dcbbe37e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt index 1d78ec2c65..c02076b71d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt index c1c4c216f2..7c433aaf39 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt index 52454ffd9d..6b3f09d9da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt index 5d6fa0ae5b..2973ae3992 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt index cba65ed28e..1b6212cc02 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt index 8c582ba4ee..181e9a0d03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt index 1359145879..ac5e6947f5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt index 0b2bdac753..70d2987939 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt index cb833a47b4..3358f3d34a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt index ee44bd43cf..b028cadbf2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt index 18eda882a1..bf100404ab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt index ac63b0ac4d..e44bace7f8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt index e7b481f53b..a181c49805 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt index 14b11dca37..af39b6d193 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt index 21350333f3..d80a2efebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt index 9e35e441be..4928924e29 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt index 0fae1d6640..6d3f1df1fd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt index 77346516fb..863ff6d3f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt index 9088c3b2bb..5435bad811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt index 3b6fc6794d..ff2e9380ba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt index b32e5c1371..86888ff699 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt index d3067a1df8..ac88c18646 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt index 3006e4c590..8e634c676f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt index 3e1fc1aeaa..5bd951e596 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt index 175cafeefc..e425d583cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt index e180115483..2bab95a464 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt index 33cc126e14..364493d8dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt index 64f0734d43..777739ae9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt index c6e1271be3..02a46063e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt index 06a22744b9..6af9b968fe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt index c7afe40176..6cd642f617 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt index 04260dbdac..477768fad3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt index e27c20c731..2540c8e7e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt index 61397c704f..9b4338dae4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt index 6e1539406e..0bfd0f026c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt index 4d69a3547f..b7778d9742 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt index dd3b48eb56..f28d236931 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt index 391d8ca2ea..b40afbc3c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt index ad5e5d306b..f313ba229b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt index 0f41a0e8b8..fe06c753cf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt index bf9bef2dff..ba724a5df6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt index 5b357de008..273bfda048 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt index b0b47e0cf0..b6572da1cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt index b26cd2a69b..fabc1c1e56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt index da7b63ff6c..5ac30f8488 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt index 87638a423d..7a142c0c99 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt index 031f03666e..4912a123e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt index af72bc301e..1823e02934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt index bd77ab4e34..6e720c28e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt index 2ab17d31ae..a00570c2b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt index ba1e065712..65c60001f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt index 86aee415f0..a9971139f4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt index 7ae0dbaadf..50191dd8c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt index 313bea23eb..642966046a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt index 64640c6490..8a88c04759 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt index 45c7efe0d4..1aea8d988d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt index 2a718cfcc1..7fb36653ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt index 55aab5128d..af3baac1a8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt index e78d3d3a96..b1dced9048 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt index 03598e1bca..e701281a63 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt index 0f9c277ca5..ef48e8a749 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt index bc7c235662..0cb2f3e527 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt index 68afeb1338..c966078000 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt index 79ff6e00f7..4f89b4db6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt index 697b763542..7329824eec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt index df7643601b..642408bd76 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt index a7706449a2..2ea33cd624 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt index c0590d6e52..6bad272157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt index fe0bfa3080..724084e696 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt index f6c42c9f6e..b6ea99179b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt index 2d2ee6d560..e307eaca2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt index 8f8428e3dd..a45f0a946f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt index e3cb1ee87a..221955c705 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt index 819c0e361d..d1fb038be3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt index 33e2390cc6..c6352b3346 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt index deef4a87d8..c4108a32ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt index 426e9e8653..57782239f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt index 10fd4e5b86..2ab0019ee6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt index fa343c4002..b026ce668d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt index b3a47e2223..13cb5bbbea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt index c9f8992028..9b6bf3ca18 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt index 4eaeba8a14..265f6942da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt index 21de08069d..4434e119cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt index 247eae56d1..ac7e3a99bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt index f90a9e239b..bde5980459 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt index 4949331be7..75fc858175 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt index f24420f2db..48db1262cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt index b4dd64afb5..4fed696ee2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt index a4f070de22..ec1b82bef7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt index ec54015341..c18040d020 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt index cc20d5a3b6..600ac908f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt index e626bd69ca..8ff65cf037 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt index deb3ac08fa..fc38b63cc8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt index 648d52978a..f93ee431e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt index a579d19591..2a064695fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt index 89026dfa71..b44b3cc115 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt index 5c3562dc5a..bfcf2d852b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt index 4a1309a578..efc56831ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt index 64c12272d4..6296a49965 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt index 1ef2064f2a..8c7b0d0f98 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt index 2cd70a03f5..ac490eac32 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt index e150c64637..a9fa7d6e9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt index dc018396e3..1b3dfc0ee5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt index c7d808a2c0..d12dbd59a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt index 89256c4579..2c1997f33e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt index d2500ab544..9b58737457 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt index 97a8027e62..8c28e56157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt index 1c94ea3ffd..6b8638a39b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt index 07d7597736..2767877603 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt index 86aed3769d..eefb1293f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt index 086f86b4f0..99a18d236c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt index 1b84f1b0e5..0baff1b2f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt index 955fd3e923..0eae6dcb7b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt index a5bee51235..54e6173681 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt index d84c7a8f32..2e97ef91dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt index 6ae7343b34..6736cc7ea9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt index d39090175b..5607ef126b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt index e54bc7e519..997f248843 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt index 404ffd13a6..e4003d4e98 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt index f12d2887af..b3a9843a8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt index bc3b1fe4f0..2a2a06963c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt index a6c600092e..b6c0adfb37 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt index 61b941bf3a..e36a60227f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt index ad3f89e6e8..bd6750ba58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt index a8df7f33a1..e2bbdc3cfb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt index 2ea7952b4a..b02ff5433d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt index 675482dd32..9a940df451 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt index 4dd67e5a5b..57b366d487 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt index dbb880ddf1..bfaa159d66 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt index 5dbbe8e166..8852460617 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt index 4aa1d6201e..68af559912 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt index a7a18f7950..320cc9a41c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt index 50f24a7955..03adf1c9da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt index a08829b5fe..eb21fe30c1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt index bfdb0cdbab..9b8555807a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt index 777d84149a..256620c88b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt index 7a09520099..650d891441 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt index a61d57efff..973ab03d87 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt index ede3207fc2..28828e599f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt index 3c4b7420ca..de916a837e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt index 34cf051eec..39110bf89a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt index 0890c11855..37c66cd121 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt index 2c24dd3c13..94d8262d35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt index f897b0aff6..eaa3301d51 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt index 70c9a777fd..465b76571b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt index 9d78269913..0c75151ba9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt index bf299d7e20..8ed1daf1e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt index 9794b01e59..fea13eda0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt index 685507a88f..53befc8df1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt index 7e1702b3d4..beae571e2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt index 79294b7249..1b271bd8c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt index 92abe2769a..d0b8450760 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt index 6da7fd4c52..d5da4886ab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt index 1938ebcf3d..2d9422ece8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt index 82693d0cc2..05fca4a2f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt index 7929ffd30f..4cf88af743 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt index 533592761e..85b364e4d2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt index a3944e8110..0fbdabb040 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt index 6bae0c8d46..32851cf2b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt index 5e00049e29..f52855408a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt index 4867defab9..42a11e9c73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt index 613dd7ae7b..69a62332f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt index 05199ff810..7154648c71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt index 4cc6f30508..1edff20771 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt index 85ab06adb7..7e3819cc24 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt index d7e17cce1c..21883227dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt index f74ce5c98f..74d47121cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt index 94ea86a104..00a67ac19e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt index 2fdb5cde49..74df48740b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt index 1cbc760759..4a1eb673be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt index 6182ce5485..8b5974cf6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt index 48cafff238..63a16cfbfc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt index 0d4a51810b..581f0af50e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt index 9c2a322d36..3ad1f996a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt index 9385a2aa9a..3c8caea221 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt index 1f3f0c5be6..a04490bac0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt index e70f48f9da..b099f18bba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt index 64cc3605a0..943e0d5172 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt index 3132047077..08299e878f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt index 64763278d0..d456867ce6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt index 8925adcdeb..e31f450460 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt index 4f5c130469..47d4728ee7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt index bac78d2ce9..011775ff33 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt index e676ffb0c3..14c27011c0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt index 368c52de4e..58bb86a5d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt index 849238fe19..4dfb1f2451 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt index 3fcbe42b69..749f332062 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt index 7ed8b2d745..ae7f184af2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt index c5df7668ca..3969254057 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt index 3586061c9d..cdffe0a114 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt index 93e669b739..179b9c4eb8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt index 5dcb11bdb2..9f45517258 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt index 8a0b25bcb1..b475208415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt index 29085177c5..8a33fb3102 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt index caee8647a1..6e798ceebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt index 7f1ac40808..cb1d382544 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt index f62681bc72..cab63cb197 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt index d77cba43f4..2863801a26 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt index 86cb508f17..f5855ed28e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt index eb5335f250..0734c6152b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt index 447c4c7032..1ccc6b3407 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt index 00b1340176..7f74c17f30 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt index df886dc5f7..20653a1f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt index c6104ac896..fe049c69b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt index a743d53ee6..97fe0c71d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt index 87eed6ad32..e2f61c01ec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt index f24b320301..aa693bcf8f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt index f7c027dcf5..5a0a6ab105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt index a99b60d143..e3710d079e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt index 4e858124bc..6434483eb7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt index e1cc552785..8e0586d846 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt index 40911e0b19..f32bd1ec64 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt index efeb8ec962..750fe0ceb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt index 8e7bfd18e1..4e61e0910e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt index 09ba38e28e..7a5bfbf63c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt index 6da7fb2471..098c35ffa7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt index 278c835288..46a0bfcb2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt index 5d9351c250..4fa82154e6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt index 13142df3fd..a4dd1d6448 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt index cc6b31d3a2..d98653c9ed 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt index b7064185bb..07580369f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt index d9c51cc426..8ab7976cea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt index a4d4e904d9..3ffb2c5395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt index afcdbfd497..4e9502b502 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt index 4737269a8c..5e93572bc6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt index b495a22288..4f6c32b73b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt index 883f201d27..cbabdf8a7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt index 60875cdc00..00690ec77d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt index 9e3922ae29..53abe6842c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt index dcacd3437b..836e687736 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt index eb0485701d..6466ea16d4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt index 1d693097c9..9bce8c07c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt index c7f59b3941..b18e44a54d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt index e9f272e227..2aba1d3421 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt index ac4c280c16..6a3efdda3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt index e2c06a26b6..0bebb51177 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt index 2a22021428..1d39f3d900 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt index 3226efa422..3e1c624d38 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt index 53e44208e4..fdff6257a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt index 51bdaa0e9f..70154284b6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt index 38b21a3b92..3306a97dea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt index e5f3db698c..38d1ac959d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt index 0eac51df19..c8f4130f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt index 705fccaae8..033d2b7941 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt index 884b91a3ac..25eb2b4bdb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt index 264f4b6f6d..d46e1440a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt index e8e4dec2a9..657fb47fc7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt index 5c1cfd955e..2b9988e6e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt index 3c3078b389..d9f6b5defc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt index 4d19a8ee3d..fe6e509594 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt index 39be46ce4b..e518574f6a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt index f196491e20..9dcbbe37e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt index 1d78ec2c65..c02076b71d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt index c1c4c216f2..7c433aaf39 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt index 52454ffd9d..6b3f09d9da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt index 5d6fa0ae5b..2973ae3992 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt index cba65ed28e..1b6212cc02 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt index 8c582ba4ee..181e9a0d03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt index 1359145879..ac5e6947f5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt index 0b2bdac753..70d2987939 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt index cb833a47b4..3358f3d34a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt index ee44bd43cf..b028cadbf2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt index 18eda882a1..bf100404ab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt index ac63b0ac4d..e44bace7f8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt index e7b481f53b..a181c49805 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt index 14b11dca37..af39b6d193 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt index 21350333f3..d80a2efebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt index 9e35e441be..4928924e29 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt index 0fae1d6640..6d3f1df1fd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt index 77346516fb..863ff6d3f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt index 9088c3b2bb..5435bad811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt index 3b6fc6794d..ff2e9380ba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt index b32e5c1371..86888ff699 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt index d3067a1df8..ac88c18646 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt index 3006e4c590..8e634c676f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt index 3e1fc1aeaa..5bd951e596 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v7.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt index 973ac4c3ab..7494174367 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt index e180115483..2bab95a464 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt index 93b84eb6b6..8f155009d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt index 64f0734d43..777739ae9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt index c6e1271be3..02a46063e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt index 4eb2a43179..22c17de7fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt index b20beddadb..52d5f4f775 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt index 04260dbdac..477768fad3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt index 60826b2698..50c51e23b3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt index 61397c704f..9b4338dae4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt index ed9b6a0282..5c7d8ce337 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt index c4032dd0c8..f53423e978 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt index 88ce76e7cd..51789b7ff0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt index 391d8ca2ea..b40afbc3c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt index 15d8ce856b..ead5cf3d51 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt index 5b076e3473..9b08543cf6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt index bb9e990aa1..3c09bacd53 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt index 5b357de008..273bfda048 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt index 9ec2a3ac2d..beaf913498 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt index b26cd2a69b..fabc1c1e56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt index da7b63ff6c..5ac30f8488 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt index 0034f04914..2e32d7fab2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt index 031f03666e..4912a123e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt index af72bc301e..1823e02934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt index 3756ca5fee..04acf56d89 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt index 2ab17d31ae..a00570c2b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt index ba1e065712..65c60001f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt index f666157a8b..0ae1ed4245 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt index 7ae0dbaadf..50191dd8c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt index 969092494b..bee0c01317 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt index e095256539..d5768190a8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt index 416e34864a..69e5e8c49d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt index 2a718cfcc1..7fb36653ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt index 55aab5128d..af3baac1a8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt index c4e1e912ac..10b2a3cf52 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt index 03598e1bca..e701281a63 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt index 38b17029e3..ff13701d47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt index bc7c235662..0cb2f3e527 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt index 80a1cfcc7a..6b09829d78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt index f3128d4721..b27a729029 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt index 5a508f9f27..4fd4b829b0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt index 48362b71d9..8ddb20137a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt index a8944aafd0..63bc5f2d93 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt index c0590d6e52..6bad272157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt index 51a49854cc..1eb65b0e03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt index f6c42c9f6e..b6ea99179b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt index 2d2ee6d560..e307eaca2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt index 0ac801e5ec..a09cb8e64e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt index dcb06176b6..43eb6c5061 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt index 819c0e361d..d1fb038be3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt index 33e2390cc6..c6352b3346 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt index deef4a87d8..c4108a32ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt index 6f6efef446..d1a68b610c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt index ed68602420..d1955c15f8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt index 2ca9f310de..66c8b83e34 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt index 120635c08d..24b8decec0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt index a8a9996499..94e0d096f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt index 5daa684397..cd56663f64 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt index 8b6e467157..ba04324084 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt index 247eae56d1..ac7e3a99bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt index 4da73f48d9..8f1b4fb41c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt index 33feccb430..e5c8b66204 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt index bd92f4385b..515cefaca7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt index 68b94e5626..f32c35e5ad 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt index 960333a4d0..9f6cb5a54c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt index 1b95726ecc..c2e87ad804 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt index 811cba80a9..96101bad2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt index ca1485ffa0..78a1bbd323 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt index 0522f66a64..25aebb5c89 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt index 648d52978a..f93ee431e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt index a579d19591..2a064695fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt index ca850b9e80..13650ecd14 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt index 5c3562dc5a..bfcf2d852b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt index 4a1309a578..efc56831ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt index 175ea34ecc..adbb097789 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt index 9b04222bac..5890be77cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt index ddf7ee2c43..1e60f1d892 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt index e150c64637..a9fa7d6e9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt index dc018396e3..1b3dfc0ee5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt index 03a5a1d1eb..7d7cc3ce1b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt index b972e9173a..459887faa4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt index d2500ab544..9b58737457 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt index 97a8027e62..8c28e56157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt index 19c37d542a..dd875fffc3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt index ac55aaae59..ad41bf57aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt index db828d7564..de1a39b6b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt index 086f86b4f0..99a18d236c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt index 1b84f1b0e5..0baff1b2f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt index 955fd3e923..0eae6dcb7b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt index ce936fa845..e1fe69a21b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt index d84c7a8f32..2e97ef91dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt index e30c0dbc2b..f398c17b2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt index d39090175b..5607ef126b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt index 0f7484bc4e..aed0ab39b0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt index 02aa263846..a825446621 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt index f12d2887af..b3a9843a8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt index 38e411f748..ae4b7a9d09 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt index 344d155421..db6067ce2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt index 61b941bf3a..e36a60227f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt index ad3f89e6e8..bd6750ba58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt index fab0475d18..a58fcf5118 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt index 2ea7952b4a..b02ff5433d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt index 675482dd32..9a940df451 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt index aae0336d9c..4cdc3e912f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt index dbb880ddf1..bfaa159d66 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt index d524a6b80c..f01b85a067 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt index 4aa1d6201e..68af559912 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt index a7a18f7950..320cc9a41c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt index 3c0053d27d..1f18e915b0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt index a08829b5fe..eb21fe30c1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt index bfdb0cdbab..9b8555807a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt index 777d84149a..256620c88b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt index 7a09520099..650d891441 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt index a61d57efff..973ab03d87 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt index ede3207fc2..28828e599f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt index 3c4b7420ca..de916a837e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt index aefd86c6c7..d36bd0586a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt index b65156ea65..c1ee109247 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt index 2c24dd3c13..94d8262d35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt index 580631837f..34e0aeeb0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt index 326de6dbe4..7f644b05f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt index 9d78269913..0c75151ba9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt index 24e4c449ba..8b13224c0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt index 9794b01e59..fea13eda0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt index 685507a88f..53befc8df1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt index 7e1702b3d4..beae571e2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt index bd20c30024..99f8992648 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt index 92abe2769a..d0b8450760 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt index 6da7fd4c52..d5da4886ab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt index e64d972c9c..5da6b3a175 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt index 82693d0cc2..05fca4a2f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt index 98cf20a0fc..2273b1439b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt index 5a1d7a845c..ac53f66bbf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt index d3df0d15c2..8a59560de9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt index 9eb1f1687f..aa9117fca7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt index 5e00049e29..f52855408a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt index ea5e9419d7..fdd9f08433 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt index 52035b3c6b..6a96a6111d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt index f44991346d..6252a94700 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt index b81e48564d..82718dc78a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt index c2474d471d..9a885cfbaf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt index d7e17cce1c..21883227dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt index f74ce5c98f..74d47121cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt index 39acc94953..2e6c5d68b6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt index 2fdb5cde49..74df48740b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt index 9194a03816..a112f100d1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt index 6182ce5485..8b5974cf6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt index aac347bcf9..b4ccd08ecf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt index 4730cb2f01..bdc922eb61 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt index 49511e2acb..c160feb915 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt index 9385a2aa9a..3c8caea221 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt index 7e7cdde0df..c9fb4021b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt index e70f48f9da..b099f18bba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt index 885da82c9e..03db007d9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt index 1c7a7839f2..7330d7c8c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt index 64763278d0..d456867ce6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt index 06f0a58a5e..da8a8608e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt index 76353724b7..afa49513ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt index b73a07bc09..98c02333fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt index 375cdfd6fa..fd2c502b47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt index 909c86ee69..3ba8a991d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt index 1919b63da0..dc6cd86f82 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt index c35b32016e..1e47c1b163 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt index 1153bc1fd7..89a8e8d011 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt index dba2231fe9..4a07e14928 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt index 3586061c9d..cdffe0a114 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt index 93e669b739..179b9c4eb8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt index 5dcb11bdb2..9f45517258 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt index 8a0b25bcb1..b475208415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt index fc5f169e3d..1c454a0c64 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt index a0c6f07275..6a91b72e84 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt index 7f1ac40808..cb1d382544 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt index 7a0736d38f..093c8b8269 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt index 098ce995ea..99df156d7f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt index b89432ad06..6eb53291f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt index aa998c564b..cd6788a5c7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt index 447c4c7032..1ccc6b3407 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt index 8724fe2b51..91cfa7c915 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt index 2a9887da54..255d4b1d04 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt index c2c3852816..b56d1432f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt index a743d53ee6..97fe0c71d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt index 87eed6ad32..e2f61c01ec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt index 9765214553..66f139460a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt index f7c027dcf5..5a0a6ab105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt index a99b60d143..e3710d079e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt index 3207911ad9..30b416e632 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt index 43a2918ce6..35bacaab14 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt index 4eef6c12ee..6cfd839855 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt index 4e075b1f86..0d5cef65ec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt index 8e7bfd18e1..4e61e0910e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt index f275ae8efd..4c8b18d3f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt index 6da7fb2471..098c35ffa7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt index 2cb3a0dbfd..56fa725a0e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt index a0c26f79e3..6df0aed4ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt index 13142df3fd..a4dd1d6448 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt index c589cdd1d8..951e68337f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt index b7064185bb..07580369f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt index a249161d00..9d085d264e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt index a4d4e904d9..3ffb2c5395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt index afcdbfd497..4e9502b502 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt index d033a78f63..39eeb8abb5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt index b495a22288..4f6c32b73b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt index 883f201d27..cbabdf8a7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt index 60875cdc00..00690ec77d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt index 9e3922ae29..53abe6842c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt index aecaf00db0..24a35f8621 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt index fa6d18bad6..07d13b4d09 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt index 7efbbec3b1..2aaa3fc5b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt index 0821fe1a21..f2345b2595 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt index 85e605413f..a2133c0616 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt index ac4c280c16..6a3efdda3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt index e2c06a26b6..0bebb51177 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt index 629030adfe..bcab8e6d3d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt index 3226efa422..3e1c624d38 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt index 53e44208e4..fdff6257a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt index 0ef9b6e2d5..26dc82e15a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt index 4eaaa94f84..9bcff62aee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt index d00f5b3487..0d2b6457cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt index 0eac51df19..c8f4130f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt index 705fccaae8..033d2b7941 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt index 884b91a3ac..25eb2b4bdb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt index d721217f84..7b04fb9b0b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt index e8e4dec2a9..657fb47fc7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt index 3e968e0c35..b87fbf6fee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt index 51879898de..0e9529d063 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt index 4d19a8ee3d..fe6e509594 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt index 6eaeddb742..fbe2e824a9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt index f196491e20..9dcbbe37e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt index 1d78ec2c65..c02076b71d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt index 0ffc5da299..cddf302f35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt index c3848c4817..95809b9f2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt index f4cb0b8b1e..d78a53de30 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt index cea6277d50..f1cbc0b38f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt index 8c582ba4ee..181e9a0d03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt index cd64d09b08..0cc901d3bb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt index 0b2bdac753..70d2987939 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt index cb833a47b4..3358f3d34a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt index ee44bd43cf..b028cadbf2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt index 7322a68c58..c999f03f34 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt index 54eb6481b4..adf5e94c57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt index c19e2da9dd..e9bc033b3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt index 14b11dca37..af39b6d193 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt index 21350333f3..d80a2efebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt index 510f0ad451..2acebb521b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt index daf4ffafb3..c25076326d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt index 4ef299d0ba..90cf46b9b8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt index 9088c3b2bb..5435bad811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt index c20e881654..521fa0f2ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt index b32e5c1371..86888ff699 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt index 1902daf031..349779dd29 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt index fe4b23f2cc..c6a0e9a8e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt index 0ebd190d89..fbd9064ef4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt index 973ac4c3ab..7494174367 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_012fbd76e82e3f04.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicit && Equals((_casting_public_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, _casting_public_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt index e180115483..2bab95a464 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0289f598fd443b1b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, _casting_public_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt index 93b84eb6b6..8f155009d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_03f8e839d8e284cb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdouble && Equals((_casting_public_readonly_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, _casting_public_readonly_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt index 64f0734d43..777739ae9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0491737f093e26d7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitchar && Equals((_casting_public_readonly_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, _casting_public_readonly_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt index c6e1271be3..02a46063e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_04ea23c5595cb8e3.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt index 4eb2a43179..22c17de7fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0519fccfe1fe9064.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneint && Equals((_casting_public_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, _casting_public_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt index b20beddadb..52d5f4f775 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_05ec053f3ab84d9f.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneshort && Equals((_casting_public_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, _casting_public_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt index 04260dbdac..477768fad3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0793e334fc6ef863.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt index 60826b2698..50c51e23b3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_08412de94ddea904.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNone && Equals((_casting_public_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, _casting_public_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt index 61397c704f..9b4338dae4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0c2e5b75af6993eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, _casting_public_readonly_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt index ed9b6a0282..5c7d8ce337 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0e18d99e6a1f2348.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonelong && Equals((_casting_public_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, _casting_public_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt index c4032dd0c8..f53423e978 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_0f297fc605923a63.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonefloat && Equals((_casting_public_readonly_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, _casting_public_readonly_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt index 88ce76e7cd..51789b7ff0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_123e571821f25081.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedouble && Equals((_casting_public_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, _casting_public_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt index 391d8ca2ea..b40afbc3c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_147b0e6c90d98234.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_Guid && Equals((_casting_public_readonly_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, _casting_public_readonly_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt index 15d8ce856b..ead5cf3d51 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15165ee14034943c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbyte && Equals((_casting_public_readonly_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, _casting_public_readonly_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt index 5b076e3473..9b08543cf6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_15680a9d68dddabc.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, _casting_public_readonly_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt index bb9e990aa1..3c09bacd53 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17828df9ca09212a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitlong && Equals((_casting_public_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, _casting_public_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt index 5b357de008..273bfda048 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_17aecd2811eb19d4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt index 9ec2a3ac2d..beaf913498 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_186d320a5776cafe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNone && Equals((_casting_public_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, _casting_public_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt index b26cd2a69b..fabc1c1e56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_199dd5c833602d61.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, _casting_public_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt index da7b63ff6c..5ac30f8488 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_19a0fc5e1a1214ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt index 0034f04914..2e32d7fab2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1a9aea462c583783.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNone && Equals((_casting_public_readonly_partial_structNoneNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, _casting_public_readonly_partial_structNoneNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt index 031f03666e..4912a123e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1b5ede882203b8bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitchar && Equals((_casting_public_readonly_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, _casting_public_readonly_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt index af72bc301e..1823e02934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c177d6b1e0c8284.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitchar && Equals((_casting_public_readonly_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, _casting_public_readonly_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt index 3756ca5fee..04acf56d89 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1c6dbc2accdc3f5d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitint && Equals((_casting_public_readonly_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, _casting_public_readonly_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt index 2ab17d31ae..a00570c2b5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1cbd715b0cfbd2da.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonechar && Equals((_casting_public_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, _casting_public_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt index ba1e065712..65c60001f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1d36007a9b4243f6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt index f666157a8b..0ae1ed4245 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1e8225ee5daa3e10.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdouble && Equals((_casting_public_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, _casting_public_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt index 7ae0dbaadf..50191dd8c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1ea649ddc12d2ad0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt index 969092494b..bee0c01317 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1f8a564b588cd2a3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebyte && Equals((_casting_public_readonly_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, _casting_public_readonly_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt index e095256539..d5768190a8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_1fee4120bb9d2612.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebyte && Equals((_casting_public_readonly_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, _casting_public_readonly_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt index 416e34864a..69e5e8c49d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2056840d5f5891ef.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneint && Equals((_casting_public_readonly_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, _casting_public_readonly_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt index 2a718cfcc1..7fb36653ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_207ab1271e0cb6ff.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonechar && Equals((_casting_public_readonly_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, _casting_public_readonly_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt index 55aab5128d..af3baac1a8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_20951901d0e8cf1f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt index c4e1e912ac..10b2a3cf52 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_22af69314c41f8ed.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdecimal && Equals((_casting_public_readonly_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, _casting_public_readonly_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt index 03598e1bca..e701281a63 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23a78fbb58104c8d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitstring && Equals((_casting_public_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, _casting_public_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt index 38b17029e3..ff13701d47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_23c7cba46cbcf30a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneint && Equals((_casting_public_readonly_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, _casting_public_readonly_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt index bc7c235662..0cb2f3e527 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_244d9b94808741a9.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitstring && Equals((_casting_public_readonly_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, _casting_public_readonly_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt index 80a1cfcc7a..6b09829d78 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2529c0cafdc91179.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitshort && Equals((_casting_public_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, _casting_public_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt index f3128d4721..b27a729029 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_261c870f0d111ba4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicit && Equals((_casting_public_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, _casting_public_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt index 5a508f9f27..4fd4b829b0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28304c74c8cfa75d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitfloat && Equals((_casting_public_readonly_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, _casting_public_readonly_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt index 48362b71d9..8ddb20137a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_28e9037259018983.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitlong && Equals((_casting_public_readonly_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, _casting_public_readonly_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt index a8944aafd0..63bc5f2d93 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2a4b5767b0858093.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneshort && Equals((_casting_public_readonly_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, _casting_public_readonly_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt index c0590d6e52..6bad272157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2b0ebc47f3146272.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitstring && Equals((_casting_public_readonly_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, _casting_public_readonly_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt index 51a49854cc..1eb65b0e03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cc409245afcb3a2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicit && Equals((_casting_public_readonly_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, _casting_public_readonly_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt index f6c42c9f6e..b6ea99179b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2cfecad6e3207109.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, _casting_public_readonly_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt index 2d2ee6d560..e307eaca2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d1cf699f9cdaa1e.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonebool && Equals((_casting_public_readonly_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, _casting_public_readonly_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt index 0ac801e5ec..a09cb8e64e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3428daff799fd5.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicit && Equals((_casting_public_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, _casting_public_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt index dcb06176b6..43eb6c5061 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2d3c73cfbc650a61.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitfloat && Equals((_casting_public_readonly_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, _casting_public_readonly_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt index 819c0e361d..d1fb038be3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_2fdb9130e92712bd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitchar && Equals((_casting_public_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, _casting_public_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt index 33e2390cc6..c6352b3346 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_311a029aada816fa.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbool && Equals((_casting_public_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, _casting_public_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt index deef4a87d8..c4108a32ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31929d2b3533247c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt index 6f6efef446..d1a68b610c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_31aa86e44a30cf0d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdecimal && Equals((_casting_public_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, _casting_public_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt index ed68602420..d1955c15f8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_32cac00b30f4b51b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbyte && Equals((_casting_public_readonly_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, _casting_public_readonly_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt index 2ca9f310de..66c8b83e34 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_332a163a340f14ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitshort && Equals((_casting_public_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, _casting_public_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt index 120635c08d..24b8decec0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3772ded7258060a4.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonefloat && Equals((_casting_public_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, _casting_public_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt index a8a9996499..94e0d096f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_383d41e8bc56c056.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicit && Equals((_casting_public_readonly_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, _casting_public_readonly_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt index 5daa684397..cd56663f64 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_38943aa04993744f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitfloat && Equals((_casting_public_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, _casting_public_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt index 8b6e467157..ba04324084 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3b3f53dd77a4cc44.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNone && Equals((_casting_public_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, _casting_public_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt index 247eae56d1..ac7e3a99bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3c33a88de7a6bf6c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonestring && Equals((_casting_public_readonly_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, _casting_public_readonly_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt index 4da73f48d9..8f1b4fb41c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3ccb897cd1349293.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneshort && Equals((_casting_public_readonly_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, _casting_public_readonly_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt index 33feccb430..e5c8b66204 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3d063870d0c74f42.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdouble && Equals((_casting_public_readonly_partial_structImplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, _casting_public_readonly_partial_structImplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt index bd92f4385b..515cefaca7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3dfe67a2b6248c98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneint && Equals((_casting_public_readonly_partial_structImplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, _casting_public_readonly_partial_structImplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt index 68b94e5626..f32c35e5ad 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_3f8bf9e57603dc9d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbyte && Equals((_casting_public_readonly_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, _casting_public_readonly_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt index 960333a4d0..9f6cb5a54c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_40fdd634fdadf6ea.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitdouble && Equals((_casting_public_readonly_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, _casting_public_readonly_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt index 1b95726ecc..c2e87ad804 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_414609e48fe26657.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitfloat && Equals((_casting_public_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, _casting_public_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt index 811cba80a9..96101bad2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4308a457a615694b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedecimal && Equals((_casting_public_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, _casting_public_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt index ca1485ffa0..78a1bbd323 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_438ceff8f25d734d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, _casting_public_readonly_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt index 0522f66a64..25aebb5c89 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_44f041bae9639b52.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitint && Equals((_casting_public_readonly_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, _casting_public_readonly_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt index 648d52978a..f93ee431e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c20f17eab9b960.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, _casting_public_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt index a579d19591..2a064695fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_47c284de9a4136a4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, _casting_public_readonly_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt index ca850b9e80..13650ecd14 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_490b3fc53b31fad0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitfloat && Equals((_casting_public_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, _casting_public_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt index 5c3562dc5a..bfcf2d852b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49a7d1f928703af8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbool && Equals((_casting_public_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, _casting_public_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt index 4a1309a578..efc56831ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49e8f01ea7a363ad.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitchar && Equals((_casting_public_readonly_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, _casting_public_readonly_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt index 175ea34ecc..adbb097789 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_49ed4aa2c7b73924.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebyte && Equals((_casting_public_partial_structExplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, _casting_public_partial_structExplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt index 9b04222bac..5890be77cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4a78fe4993b48bd8.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonedecimal && Equals((_casting_public_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, _casting_public_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt index ddf7ee2c43..1e60f1d892 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4cc36a7fc18ff98c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitdouble && Equals((_casting_public_readonly_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, _casting_public_readonly_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt index e150c64637..a9fa7d6e9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4d2ce9e4e21faede.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebool && Equals((_casting_public_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, _casting_public_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt index dc018396e3..1b3dfc0ee5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4dc5859b3fd630f1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitchar && Equals((_casting_public_partial_structExplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, _casting_public_partial_structExplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt index 03a5a1d1eb..7d7cc3ce1b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4e2f22127fbabc9e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicit && Equals((_casting_public_partial_structImplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, _casting_public_partial_structImplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt index b972e9173a..459887faa4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_4f32ea6a14dd642d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneshort && Equals((_casting_public_partial_structNoneNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, _casting_public_partial_structNoneNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt index d2500ab544..9b58737457 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50a6af1e11b0318a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_Guid && Equals((_casting_public_partial_structNoneImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, _casting_public_partial_structNoneImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt index 97a8027e62..8c28e56157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_50b916edf97941f5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt index 19c37d542a..dd875fffc3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5189be4c6f7fc47d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicit && Equals((_casting_public_partial_structExplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, _casting_public_partial_structExplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt index ac55aaae59..ad41bf57aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_51b126a6fe0ebe6c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdecimal && Equals((_casting_public_partial_structExplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, _casting_public_partial_structExplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt index db828d7564..de1a39b6b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_54382f89b64a6cd5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitdouble && Equals((_casting_public_readonly_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, _casting_public_readonly_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt index 086f86b4f0..99a18d236c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_556ddbf73d404cd7.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonechar && Equals((_casting_public_readonly_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, _casting_public_readonly_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt index 1b84f1b0e5..0baff1b2f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_56c55021b359540e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitbool && Equals((_casting_public_readonly_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, _casting_public_readonly_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt index 955fd3e923..0eae6dcb7b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_58551337a41f932d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt index ce936fa845..e1fe69a21b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5871f8fae30f854b.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneint && Equals((_casting_public_partial_structNoneNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, _casting_public_partial_structNoneNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt index d84c7a8f32..2e97ef91dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5994179fde12124b.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_Guid && Equals((_casting_public_partial_structImplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, _casting_public_partial_structImplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt index e30c0dbc2b..f398c17b2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5af19078558bef22.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneshort && Equals((_casting_public_partial_structExplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, _casting_public_partial_structExplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt index d39090175b..5607ef126b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5b4d2bfedf4bf30f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, _casting_public_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt index 0f7484bc4e..aed0ab39b0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bafbd037cbc4cda.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitlong && Equals((_casting_public_readonly_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, _casting_public_readonly_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt index 02aa263846..a825446621 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5bf05d24d75004eb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbyte && Equals((_casting_public_readonly_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, _casting_public_readonly_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt index f12d2887af..b3a9843a8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_5c42d7c6b7b34b8a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitSystem_DateTime && Equals((_casting_public_partial_structNoneImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, _casting_public_partial_structNoneImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt index 38e411f748..ae4b7a9d09 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6049a1c6ea8c574f.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbyte && Equals((_casting_public_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, _casting_public_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt index 344d155421..db6067ce2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_608e6edcd10a3d83.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitlong && Equals((_casting_public_partial_structImplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, _casting_public_partial_structImplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt index 61b941bf3a..e36a60227f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6298f5fc986f7be3.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitstring && Equals((_casting_public_partial_structExplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, _casting_public_partial_structExplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt index ad3f89e6e8..bd6750ba58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_62c61cd9e73e4389.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonechar && Equals((_casting_public_partial_structExplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, _casting_public_partial_structExplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt index fab0475d18..a58fcf5118 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_64175d46d7146515.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitlong && Equals((_casting_public_readonly_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, _casting_public_readonly_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt index 2ea7952b4a..b02ff5433d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_65a095141c2b0327.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbool && Equals((_casting_public_readonly_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, _casting_public_readonly_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt index 675482dd32..9a940df451 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6622e6898bd2a60c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt index aae0336d9c..4cdc3e912f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_670bc0a52047edef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitshort && Equals((_casting_public_readonly_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, _casting_public_readonly_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt index dbb880ddf1..bfaa159d66 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_69fcd2606de7a2ef.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, _casting_public_partial_structExplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt index d524a6b80c..f01b85a067 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6c198b9ba248881a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitbyte && Equals((_casting_public_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, _casting_public_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt index 4aa1d6201e..68af559912 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6ecf9d4c2948b0ee.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structExplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt index a7a18f7950..320cc9a41c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_6edc0e333d7ca95b.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt index 3c0053d27d..1f18e915b0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_71145c65a5055538.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebyte && Equals((_casting_public_readonly_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, _casting_public_readonly_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt index a08829b5fe..eb21fe30c1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7258f6be8e2c828d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitstring && Equals((_casting_public_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, _casting_public_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt index bfdb0cdbab..9b8555807a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72b0cb9c39c87b63.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, _casting_public_partial_structNoneNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt index 777d84149a..256620c88b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_72fd6e0d4ddc0d3f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbool && Equals((_casting_public_partial_structImplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, _casting_public_partial_structImplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt index 7a09520099..650d891441 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_734f1d13b7cdbc1b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt index a61d57efff..973ab03d87 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73bbd244c82ae3fd.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitstring && Equals((_casting_public_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, _casting_public_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt index ede3207fc2..28828e599f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c2839e94370620.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonestring && Equals((_casting_public_readonly_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, _casting_public_readonly_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt index 3c4b7420ca..de916a837e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_73c81238365479f6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbool && Equals((_casting_public_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, _casting_public_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt index aefd86c6c7..d36bd0586a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_752db732ecb59b58.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonelong && Equals((_casting_public_readonly_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, _casting_public_readonly_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt index b65156ea65..c1ee109247 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_75d3e924cfc2a977.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitfloat && Equals((_casting_public_readonly_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, _casting_public_readonly_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt index 2c24dd3c13..94d8262d35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_76f4f8df0b31dadb.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, _casting_public_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt index 580631837f..34e0aeeb0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_78bdba894c070386.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedecimal && Equals((_casting_public_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, _casting_public_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt index 326de6dbe4..7f644b05f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7a50710f3a13ffbe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicit && Equals((_casting_public_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, _casting_public_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt index 9d78269913..0c75151ba9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7bbe9bb95d8a8d38.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt index 24e4c449ba..8b13224c0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7be5b701649dc247.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdouble && Equals((_casting_public_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, _casting_public_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt index 9794b01e59..fea13eda0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_7dbe84c313bbb914.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt index 685507a88f..53befc8df1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81bd438b544b74bd.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_Guid && Equals((_casting_public_partial_structNoneNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, _casting_public_partial_structNoneNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt index 7e1702b3d4..beae571e2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81eb306e4b98152e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt index bd20c30024..99f8992648 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_81ec725790703699.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitlong && Equals((_casting_public_partial_structNoneImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, _casting_public_partial_structNoneImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt index 92abe2769a..d0b8450760 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86105943e84e847f.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_Guid && Equals((_casting_public_partial_structImplicitImplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, _casting_public_partial_structImplicitImplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt index 6da7fd4c52..d5da4886ab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8655bfa3b8992c7c.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, _casting_public_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt index e64d972c9c..5da6b3a175 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_86fc6d2ce139945a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebyte && Equals((_casting_public_partial_structNoneNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, _casting_public_partial_structNoneNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt index 82693d0cc2..05fca4a2f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_888520bd04bba958.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonebool && Equals((_casting_public_readonly_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, _casting_public_readonly_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt index 98cf20a0fc..2273b1439b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_895270e942df83ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitlong && Equals((_casting_public_readonly_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, _casting_public_readonly_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt index 5a1d7a845c..ac53f66bbf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8a78c2d195f51c4c.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitdecimal && Equals((_casting_public_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, _casting_public_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt index d3df0d15c2..8a59560de9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8b225313a032ee08.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneint && Equals((_casting_public_partial_structExplicitNoneint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, _casting_public_partial_structExplicitNoneint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt index 9eb1f1687f..aa9117fca7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8cba5794f0652371.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitshort && Equals((_casting_public_readonly_partial_structImplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, _casting_public_readonly_partial_structImplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt index 5e00049e29..f52855408a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_8fd9804f5bd26a45.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_Guid && Equals((_casting_public_partial_structImplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, _casting_public_partial_structImplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt index ea5e9419d7..fdd9f08433 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_90f1417ae7ed53de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitint && Equals((_casting_public_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, _casting_public_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt index 52035b3c6b..6a96a6111d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_91990b04953db393.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicit && Equals((_casting_public_readonly_partial_structNoneExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, _casting_public_readonly_partial_structNoneExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt index f44991346d..6252a94700 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9200ff452a0795bc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitdouble && Equals((_casting_public_partial_structExplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, _casting_public_partial_structExplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt index b81e48564d..82718dc78a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_92edc4c62e75ebc2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbyte && Equals((_casting_public_partial_structExplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, _casting_public_partial_structExplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt index c2474d471d..9a885cfbaf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_93b9295d7d839d94.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedouble && Equals((_casting_public_readonly_partial_structImplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, _casting_public_readonly_partial_structImplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt index d7e17cce1c..21883227dd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_941c98798b13301e.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitbool && Equals((_casting_public_readonly_partial_structNoneImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, _casting_public_readonly_partial_structNoneImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt index f74ce5c98f..74d47121cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_945670831a185c84.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitchar && Equals((_casting_public_partial_structNoneExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, _casting_public_partial_structNoneExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt index 39acc94953..2e6c5d68b6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_958fb5f6bad827c7.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitfloat && Equals((_casting_public_readonly_partial_structImplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, _casting_public_readonly_partial_structImplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt index 2fdb5cde49..74df48740b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_95d56defa642382d.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, _casting_public_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt index 9194a03816..a112f100d1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_97c94938b29f3cd8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitdecimal && Equals((_casting_public_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, _casting_public_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt index 6182ce5485..8b5974cf6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_982cabb729c12038.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitstring && Equals((_casting_public_readonly_partial_structImplicitImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, _casting_public_readonly_partial_structImplicitImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt index aac347bcf9..b4ccd08ecf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_99f3ec72142e73ac.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdecimal && Equals((_casting_public_partial_structImplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, _casting_public_partial_structImplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt index 4730cb2f01..bdc922eb61 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9a1bd23b384ef683.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitint && Equals((_casting_public_readonly_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, _casting_public_readonly_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt index 49511e2acb..c160feb915 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9b84c021f22516d6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonedouble && Equals((_casting_public_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, _casting_public_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt index 9385a2aa9a..3c8caea221 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9bb22f74e6137ab0.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt index 7e7cdde0df..c9fb4021b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9c5059f1c406a6e0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicit && Equals((_casting_public_readonly_partial_structNoneImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, _casting_public_readonly_partial_structNoneImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt index e70f48f9da..b099f18bba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9d2386e4cdf4622c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_DateTime && Equals((_casting_public_partial_structExplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, _casting_public_partial_structExplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt index 885da82c9e..03db007d9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9deeda27f7a8acdf.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitlong && Equals((_casting_public_partial_structImplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, _casting_public_partial_structImplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt index 1c7a7839f2..7330d7c8c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e1d6f77768563a0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdouble && Equals((_casting_public_partial_structNoneExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, _casting_public_partial_structNoneExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt index 64763278d0..d456867ce6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9e362fba77f22be4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonestring && Equals((_casting_public_partial_structNoneNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, _casting_public_partial_structNoneNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt index 06f0a58a5e..da8a8608e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f2aa7b4f6246f6a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedouble && Equals((_casting_public_readonly_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, _casting_public_readonly_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt index 76353724b7..afa49513ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f876f3fa4dc5e75.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicit && Equals((_casting_public_readonly_partial_structImplicitExplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, _casting_public_readonly_partial_structImplicitExplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt index b73a07bc09..98c02333fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f92a05dc45c7f93.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneshort && Equals((_casting_public_readonly_partial_structImplicitNoneshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, _casting_public_readonly_partial_structImplicitNoneshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt index 375cdfd6fa..fd2c502b47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_9f96079551cd472e.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitbyte && Equals((_casting_public_partial_structImplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, _casting_public_partial_structImplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt index 909c86ee69..3ba8a991d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a054f29bc225e27f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitbyte && Equals((_casting_public_partial_structNoneImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, _casting_public_partial_structNoneImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt index 1919b63da0..dc6cd86f82 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1b09cc31f803ee4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitdecimal && Equals((_casting_public_readonly_partial_structImplicitExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, _casting_public_readonly_partial_structImplicitExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt index c35b32016e..1e47c1b163 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a1d47755ff750dbc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitshort && Equals((_casting_public_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, _casting_public_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt index 1153bc1fd7..89a8e8d011 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a2a185228d8c2e8c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitshort && Equals((_casting_public_partial_structExplicitImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, _casting_public_partial_structExplicitImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt index dba2231fe9..4a07e14928 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a39226592ded51a4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitint && Equals((_casting_public_partial_structImplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, _casting_public_partial_structImplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt index 3586061c9d..cdffe0a114 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a54637d80474d1eb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt index 93e669b739..179b9c4eb8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a60d5d9742196881.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_DateTimeOffset && Equals((_casting_public_partial_structExplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, _casting_public_partial_structExplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt index 5dcb11bdb2..9f45517258 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a624efe430e681de.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, _casting_public_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt index 8a0b25bcb1..b475208415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_a66bed7e68fe176a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitchar && Equals((_casting_public_readonly_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, _casting_public_readonly_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt index fc5f169e3d..1c454a0c64 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aa6d2a79b976e71d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdecimal && Equals((_casting_public_readonly_partial_structNoneImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, _casting_public_readonly_partial_structNoneImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt index a0c6f07275..6a91b72e84 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ab37f66cfadaa3e7.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitshort && Equals((_casting_public_readonly_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, _casting_public_readonly_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt index 7f1ac40808..cb1d382544 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_aba5fb5b005587ce.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitchar && Equals((_casting_public_readonly_partial_structImplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, _casting_public_readonly_partial_structImplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt index 7a0736d38f..093c8b8269 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_accf8049754215f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbyte && Equals((_casting_public_readonly_partial_structImplicitExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, _casting_public_readonly_partial_structImplicitExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt index 098ce995ea..99df156d7f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b18da007bdc0ae92.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitlong && Equals((_casting_public_readonly_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, _casting_public_readonly_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt index b89432ad06..6eb53291f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b1bd7bea4d32bfa0.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitdecimal && Equals((_casting_public_readonly_partial_structExplicitImplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, _casting_public_readonly_partial_structExplicitImplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt index aa998c564b..cd6788a5c7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b31a24b3f97f3c03.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitfloat && Equals((_casting_public_partial_structNoneExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, _casting_public_partial_structNoneExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt index 447c4c7032..1ccc6b3407 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b40ebee9a376a06f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitchar && Equals((_casting_public_partial_structNoneImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, _casting_public_partial_structNoneImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt index 8724fe2b51..91cfa7c915 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b5ef80563d878db0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitfloat && Equals((_casting_public_readonly_partial_structNoneImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, _casting_public_readonly_partial_structNoneImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt index 2a9887da54..255d4b1d04 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b8bebaeda49a0b9d.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonedecimal && Equals((_casting_public_readonly_partial_structImplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, _casting_public_readonly_partial_structImplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt index c2c3852816..b56d1432f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b92b2819d6600f42.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNone && Equals((_casting_public_readonly_partial_structImplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, _casting_public_readonly_partial_structImplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt index a743d53ee6..97fe0c71d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b96e69acc89f6b8c.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt index 87eed6ad32..e2f61c01ec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b989fabae157647b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNoneSystem_Guid && Equals((_casting_public_partial_structExplicitNoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, _casting_public_partial_structExplicitNoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt index 9765214553..66f139460a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_b9cbca8c3d93931d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitbyte && Equals((_casting_public_readonly_partial_structExplicitImplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, _casting_public_readonly_partial_structExplicitImplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt index f7c027dcf5..5a0a6ab105 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ba5f0c9f4a062315.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitbool && Equals((_casting_public_readonly_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, _casting_public_readonly_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt index a99b60d143..e3710d079e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_bda82dcc9f2af714.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitstring && Equals((_casting_public_readonly_partial_structNoneImplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, _casting_public_readonly_partial_structNoneImplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt index 3207911ad9..30b416e632 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_be36f5676d91428e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitlong && Equals((_casting_public_readonly_partial_structExplicitExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, _casting_public_readonly_partial_structExplicitExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt index 43a2918ce6..35bacaab14 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c00d48ce7c74dbfa.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitfloat && Equals((_casting_public_partial_structExplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, _casting_public_partial_structExplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt index 4eef6c12ee..6cfd839855 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c11cd2165f60bbaf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitint && Equals((_casting_public_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, _casting_public_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt index 4e075b1f86..0d5cef65ec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c1c9d3ac4859ee8e.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicitint && Equals((_casting_public_readonly_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, _casting_public_readonly_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt index 8e7bfd18e1..4e61e0910e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c29ddc1f6001050b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonebool && Equals((_casting_public_partial_structExplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, _casting_public_partial_structExplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt index f275ae8efd..4c8b18d3f1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c2b5fe975d4c1e4d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitlong && Equals((_casting_public_partial_structNoneExplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, _casting_public_partial_structNoneExplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt index 6da7fb2471..098c35ffa7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4a522bebc04b8c4.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, _casting_public_partial_structImplicitImplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt index 2cb3a0dbfd..56fa725a0e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c4fe9eb36be08aa1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonefloat && Equals((_casting_public_partial_structExplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, _casting_public_partial_structExplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt index a0c26f79e3..6df0aed4ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c7471f617ca8fd47.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitfloat && Equals((_casting_public_readonly_partial_structImplicitImplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, _casting_public_readonly_partial_structImplicitImplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt index 13142df3fd..a4dd1d6448 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c82dcabd58f1b178.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonestring && Equals((_casting_public_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, _casting_public_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt index c589cdd1d8..951e68337f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c84077e206d1f99b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedouble && Equals((_casting_public_readonly_partial_structExplicitNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, _casting_public_readonly_partial_structExplicitNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt index b7064185bb..07580369f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c987aa4c35829f13.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonebool && Equals((_casting_public_readonly_partial_structImplicitNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, _casting_public_readonly_partial_structImplicitNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt index a249161d00..9d085d264e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_c9917fb063d2ccf1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitlong && Equals((_casting_public_partial_structExplicitImplicitlong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, _casting_public_partial_structExplicitImplicitlong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt index a4d4e904d9..3ffb2c5395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca1e82fccc708e60.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitbool && Equals((_casting_public_readonly_partial_structNoneExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, _casting_public_readonly_partial_structNoneExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt index afcdbfd497..4e9502b502 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ca4ee236342bfea5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structNoneExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, _casting_public_readonly_partial_structNoneExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt index d033a78f63..39eeb8abb5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_cb1c98c311689647.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonedecimal && Equals((_casting_public_readonly_partial_structNoneNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, _casting_public_readonly_partial_structNoneNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt index b495a22288..4f6c32b73b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce617d3138e25438.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitstring && Equals((_casting_public_readonly_partial_structNoneExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, _casting_public_readonly_partial_structNoneExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt index 883f201d27..cbabdf8a7c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ce939348f1017824.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structExplicitNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, _casting_public_readonly_partial_structExplicitNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt index 60875cdc00..00690ec77d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d0cce4d493d71942.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitstring && Equals((_casting_public_partial_structExplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, _casting_public_partial_structExplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt index 9e3922ae29..53abe6842c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d1354de3e9fae8f4.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNoneSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt index aecaf00db0..24a35f8621 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2472ba47fe70f93.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitImplicit && Equals((_casting_public_readonly_partial_structExplicitImplicit)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, _casting_public_readonly_partial_structExplicitImplicit right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitImplicit left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt index fa6d18bad6..07d13b4d09 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d2562fefd66b1f02.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonefloat && Equals((_casting_public_readonly_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, _casting_public_readonly_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt index 7efbbec3b1..2aaa3fc5b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d35e91e202b9a7f3.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitint && Equals((_casting_public_partial_structImplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, _casting_public_partial_structImplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt index 0821fe1a21..f2345b2595 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d4627929e7d82733.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitshort && Equals((_casting_public_readonly_partial_structNoneImplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, _casting_public_readonly_partial_structNoneImplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt index 85e605413f..a2133c0616 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d48bf6cf87134eac.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonelong && Equals((_casting_public_readonly_partial_structExplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, _casting_public_readonly_partial_structExplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt index ac4c280c16..6a3efdda3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d512997de79bdb40.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitchar && Equals((_casting_public_partial_structImplicitImplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, _casting_public_partial_structImplicitImplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt index e2c06a26b6..0bebb51177 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d5d8bc5e8c982f99.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTimeOffset && Equals((_casting_public_partial_structNoneExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, _casting_public_partial_structNoneExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt index 629030adfe..bcab8e6d3d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d663737b6d1af602.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonedouble && Equals((_casting_public_partial_structNoneNonedouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, _casting_public_partial_structNoneNonedouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt index 3226efa422..3e1c624d38 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d883246e5727ab30.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitSystem_DateTime && Equals((_casting_public_partial_structNoneExplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, _casting_public_partial_structNoneExplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt index 53e44208e4..fdff6257a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_d8ae2ca1009d50dd.verified.txt @@ -202,7 +202,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonestring && Equals((_casting_public_readonly_partial_structImplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, _casting_public_readonly_partial_structImplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt index 0ef9b6e2d5..26dc82e15a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_da8897ebb8784e2d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitint && Equals((_casting_public_readonly_partial_structExplicitExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, _casting_public_readonly_partial_structExplicitExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt index 4eaaa94f84..9bcff62aee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dc0886a61829b0fd.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonebyte && Equals((_casting_public_partial_structImplicitNonebyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, _casting_public_partial_structImplicitNonebyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt index d00f5b3487..0d2b6457cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dd0ee5b0c8cd3a94.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitshort && Equals((_casting_public_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, _casting_public_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt index 0eac51df19..c8f4130f3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_df82e6ddad53d5de.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonechar && Equals((_casting_public_partial_structImplicitNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, _casting_public_partial_structImplicitNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt index 705fccaae8..033d2b7941 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_dfa31d30d8934ccb.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonebool && Equals((_casting_public_partial_structNoneNonebool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, _casting_public_partial_structNoneNonebool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonebool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonebool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt index 884b91a3ac..25eb2b4bdb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e01fe49115fcf6b0.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitstring && Equals((_casting_public_readonly_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, _casting_public_readonly_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt index d721217f84..7b04fb9b0b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e1e6dac3de0acebe.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonelong && Equals((_casting_public_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, _casting_public_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt index e8e4dec2a9..657fb47fc7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e277854a2c4a06a1.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitNonestring && Equals((_casting_public_partial_structExplicitNonestring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, _casting_public_partial_structExplicitNonestring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitNonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitNonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt index 3e968e0c35..b87fbf6fee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e387c177c339a656.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitint && Equals((_casting_public_readonly_partial_structNoneExplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, _casting_public_readonly_partial_structNoneExplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt index 51879898de..0e9529d063 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e40acbf5919b0649.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitNonefloat && Equals((_casting_public_partial_structImplicitNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, _casting_public_partial_structImplicitNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt index 4d19a8ee3d..fe6e509594 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e467068e6ca0ff61.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNoneSystem_DateTime && Equals((_casting_public_readonly_partial_structNoneNoneSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, _casting_public_readonly_partial_structNoneNoneSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNoneSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt index 6eaeddb742..fbe2e824a9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e53aaaec90a49199.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonefloat && Equals((_casting_public_readonly_partial_structNoneNonefloat)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, _casting_public_readonly_partial_structNoneNonefloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonefloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt index f196491e20..9dcbbe37e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e8ab41f6c2551162.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitbool && Equals((_casting_public_partial_structExplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, _casting_public_partial_structExplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt index 1d78ec2c65..c02076b71d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e90739ee77f59479.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime && Equals((_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, _casting_public_readonly_partial_structImplicitImplicitSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitImplicitSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt index 0ffc5da299..cddf302f35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9618be5f9ed361a.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitbyte && Equals((_casting_public_partial_structNoneExplicitbyte)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, _casting_public_partial_structNoneExplicitbyte right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt index c3848c4817..95809b9f2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_e9e9ee18eeea2c6a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitfloat && Equals((_casting_public_partial_structExplicitExplicitfloat)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, _casting_public_partial_structExplicitExplicitfloat right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt index f4cb0b8b1e..d78a53de30 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ea3ea92fbacf24dc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneImplicitint && Equals((_casting_public_partial_structNoneImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, _casting_public_partial_structNoneImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt index cea6277d50..f1cbc0b38f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ed42bf4f42cdccdb.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitshort && Equals((_casting_public_readonly_partial_structImplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, _casting_public_readonly_partial_structImplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt index 8c582ba4ee..181e9a0d03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ee6d718ab7d85638.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitbool && Equals((_casting_public_partial_structExplicitImplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, _casting_public_partial_structExplicitImplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt index cd64d09b08..0cc901d3bb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_ef720282f80f163d.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneExplicitdecimal && Equals((_casting_public_partial_structNoneExplicitdecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, _casting_public_partial_structNoneExplicitdecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneExplicitdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt index 0b2bdac753..70d2987939 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1b0c0a8b6a1e7fc.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_Guid && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_Guid)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, _casting_public_readonly_partial_structExplicitExplicitSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt index cb833a47b4..3358f3d34a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f1d44dd71d288957.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt index ee44bd43cf..b028cadbf2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f22764bf85dd7067.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset && Equals((_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, _casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitExplicitSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt index 7322a68c58..c999f03f34 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f301c12f0099fa83.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneImplicitdouble && Equals((_casting_public_readonly_partial_structNoneImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, _casting_public_readonly_partial_structNoneImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt index 54eb6481b4..adf5e94c57 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f36e259cea8673c5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitImplicitint && Equals((_casting_public_partial_structExplicitImplicitint)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, _casting_public_partial_structExplicitImplicitint right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitImplicitint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt index c19e2da9dd..e9bc033b3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f396c3d0094f3511.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNonedecimal && Equals((_casting_public_readonly_partial_structExplicitNonedecimal)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, _casting_public_readonly_partial_structExplicitNonedecimal right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNonedecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt index 14b11dca37..af39b6d193 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f41f68eb3459ae9d.verified.txt @@ -203,7 +203,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitExplicitstring && Equals((_casting_public_partial_structImplicitExplicitstring)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, _casting_public_partial_structImplicitExplicitstring right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitExplicitstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitExplicitstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt index 21350333f3..d80a2efebd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f5be229116372875.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitExplicitbool && Equals((_casting_public_readonly_partial_structImplicitExplicitbool)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, _casting_public_readonly_partial_structImplicitExplicitbool right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitExplicitbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt index 510f0ad451..2acebb521b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f61b10fdcf0f518a.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structImplicitImplicitdouble && Equals((_casting_public_partial_structImplicitImplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, _casting_public_partial_structImplicitImplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structImplicitImplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt index daf4ffafb3..c25076326d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f620a7aa9bfb56b0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structExplicitNone && Equals((_casting_public_readonly_partial_structExplicitNone)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, _casting_public_readonly_partial_structExplicitNone right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structExplicitNone left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt index 4ef299d0ba..90cf46b9b8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f68c19de8a394152.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structNoneNonelong && Equals((_casting_public_partial_structNoneNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, _casting_public_partial_structNoneNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structNoneNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structNoneNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt index 9088c3b2bb..5435bad811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f6b60ade6a11fa6f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneNonechar && Equals((_casting_public_readonly_partial_structNoneNonechar)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, _casting_public_readonly_partial_structNoneNonechar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneNonechar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt index c20e881654..521fa0f2ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_f73d1178640672c5.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structImplicitNonelong && Equals((_casting_public_readonly_partial_structImplicitNonelong)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, _casting_public_readonly_partial_structImplicitNonelong right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structImplicitNonelong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt index b32e5c1371..86888ff699 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_faa1e6703da506fe.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitchar && Equals((_casting_public_partial_structExplicitExplicitchar)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, _casting_public_partial_structExplicitExplicitchar right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt index 1902daf031..349779dd29 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fcf161275df488ea.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_readonly_partial_structNoneExplicitshort && Equals((_casting_public_readonly_partial_structNoneExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, _casting_public_readonly_partial_structNoneExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_readonly_partial_structNoneExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt index fe4b23f2cc..c6a0e9a8e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fe306410050dd481.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitdouble && Equals((_casting_public_partial_structExplicitExplicitdouble)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, _casting_public_partial_structExplicitExplicitdouble right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt index 0ebd190d89..fbd9064ef4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v8.0/CastingGenerationTests.Can_specify_casting_at_the_value_object_level_fea89883ed414cbb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is _casting_public_partial_structExplicitExplicitshort && Equals((_casting_public_partial_structExplicitExplicitshort)obj); } - public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => Equals(left, right); + public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => left.Equals(right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, _casting_public_partial_structExplicitExplicitshort right) => !(left == right); public static global::System.Boolean operator ==(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(_casting_public_partial_structExplicitExplicitshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt index 719edb8f42..6b0f17cae8 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Customization_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Customization_override.verified.txt index 4bc4277b09..ce3f8a7ae1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Customization_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Customization_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt index cf558502c7..bfbcdc9bc9 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt @@ -191,7 +191,7 @@ namespace Whatever return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt index c58044fcf5..1fd5f79838 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Exception_override.verified.txt index 266c5fde9d..92f39026f1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt index 40521e7e0a..2aff0042d2 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.OmitDebugAttributes_override.verified.txt index e30b0e6b78..8f657b9523 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Override_all.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Override_all.verified.txt index edde37d42c..5b043633d9 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Override_all.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Override_all.verified.txt @@ -188,7 +188,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Type_override.verified.txt index 62799803c5..74586a32b1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/GlobalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Conversion_and_exceptions_override.verified.txt index 719edb8f42..6b0f17cae8 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Conversion_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Conversion_override.verified.txt index 42ae4f2cd6..ab2eadc241 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Conversion_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Conversion_override.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults.verified.txt index c58044fcf5..1fd5f79838 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults_with_validation.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults_with_validation.verified.txt index 5d00acba79..f7f9ed9558 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults_with_validation.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults_with_validation.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt index d4ef77d1e0..c7f473fbfb 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt @@ -230,7 +230,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Exception_override.verified.txt index 266c5fde9d..92f39026f1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.OmitDebugAttributes_override.verified.txt index e30b0e6b78..8f657b9523 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Override_global_config_locally.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Override_global_config_locally.verified.txt index 3adb3b2e79..8c6fb993a6 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Override_global_config_locally.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Override_global_config_locally.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Type_override.verified.txt index 62799803c5..74586a32b1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v3.1/LocalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt index a7194dec46..044b6377bd 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Customization_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Customization_override.verified.txt index 47f106f67a..b797f8b9cc 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Customization_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Customization_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt index bf1e141b0a..33086f8fd1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt @@ -191,7 +191,7 @@ namespace Whatever return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt index e46d0506a8..23cadbea5b 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Exception_override.verified.txt index f0d42d9378..a8e8f36251 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt index f3b69fda7e..676d43bf7b 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.OmitDebugAttributes_override.verified.txt index 4c3a26c8be..8f3cd40a13 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Override_all.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Override_all.verified.txt index edde37d42c..5b043633d9 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Override_all.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Override_all.verified.txt @@ -188,7 +188,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Type_override.verified.txt index 438b42354d..dee68862d7 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/GlobalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Conversion_and_exceptions_override.verified.txt index a7194dec46..044b6377bd 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Conversion_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Conversion_override.verified.txt index ece8d5f2a5..6d3e023601 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Conversion_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Conversion_override.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults.verified.txt index e46d0506a8..23cadbea5b 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults_with_validation.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults_with_validation.verified.txt index b3e63cfd7d..784d882388 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults_with_validation.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults_with_validation.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt index ea87702c26..11f7f64c04 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt @@ -230,7 +230,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Exception_override.verified.txt index f0d42d9378..a8e8f36251 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.OmitDebugAttributes_override.verified.txt index 4c3a26c8be..8f3cd40a13 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Override_global_config_locally.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Override_global_config_locally.verified.txt index e53e213acf..bcfc618e4b 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Override_global_config_locally.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Override_global_config_locally.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Type_override.verified.txt index 438b42354d..dee68862d7 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.6.1/LocalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt index b2093bdca5..af53cb2e8b 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Customization_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Customization_override.verified.txt index 45a366f25f..b54cceec07 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Customization_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Customization_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt index c834e487fb..865f3e0f7a 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt @@ -191,7 +191,7 @@ namespace Whatever return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt index 91dc3cb5b2..c20dfa42e9 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Exception_override.verified.txt index d92e342b92..d45b766816 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt index 8b4a356de7..3567132195 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.OmitDebugAttributes_override.verified.txt index 004c418d0f..50766d4391 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Override_all.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Override_all.verified.txt index edde37d42c..5b043633d9 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Override_all.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Override_all.verified.txt @@ -188,7 +188,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Type_override.verified.txt index 4f588e3564..fa7593dc43 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/GlobalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Conversion_and_exceptions_override.verified.txt index b2093bdca5..af53cb2e8b 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Conversion_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Conversion_override.verified.txt index 14aba32f20..5d8dcd536d 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Conversion_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Conversion_override.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults.verified.txt index 91dc3cb5b2..c20dfa42e9 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults_with_validation.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults_with_validation.verified.txt index 09c1a39336..fa482f08b2 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults_with_validation.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults_with_validation.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt index 361c0407b0..d106fb4266 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt @@ -230,7 +230,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Exception_override.verified.txt index d92e342b92..d45b766816 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.OmitDebugAttributes_override.verified.txt index 004c418d0f..50766d4391 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Override_global_config_locally.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Override_global_config_locally.verified.txt index b6d586020a..bfbe1e4cd1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Override_global_config_locally.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Override_global_config_locally.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Type_override.verified.txt index 4f588e3564..fa7593dc43 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v4.8/LocalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt index 719edb8f42..6b0f17cae8 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Customization_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Customization_override.verified.txt index 4bc4277b09..ce3f8a7ae1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Customization_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Customization_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt index cf558502c7..bfbcdc9bc9 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt @@ -191,7 +191,7 @@ namespace Whatever return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt index c58044fcf5..1fd5f79838 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Exception_override.verified.txt index 266c5fde9d..92f39026f1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt index 40521e7e0a..2aff0042d2 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt index e30b0e6b78..8f657b9523 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Override_all.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Override_all.verified.txt index edde37d42c..5b043633d9 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Override_all.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Override_all.verified.txt @@ -188,7 +188,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Type_override.verified.txt index 62799803c5..74586a32b1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/GlobalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt index 719edb8f42..6b0f17cae8 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Conversion_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Conversion_override.verified.txt index 42ae4f2cd6..ab2eadc241 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Conversion_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Conversion_override.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults.verified.txt index c58044fcf5..1fd5f79838 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults_with_validation.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults_with_validation.verified.txt index 5d00acba79..f7f9ed9558 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults_with_validation.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults_with_validation.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt index d4ef77d1e0..c7f473fbfb 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt @@ -230,7 +230,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Exception_override.verified.txt index 266c5fde9d..92f39026f1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt index e30b0e6b78..8f657b9523 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Override_global_config_locally.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Override_global_config_locally.verified.txt index 3adb3b2e79..8c6fb993a6 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Override_global_config_locally.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Override_global_config_locally.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Type_override.verified.txt index 62799803c5..74586a32b1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v5.0/LocalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt index 719edb8f42..6b0f17cae8 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Customization_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Customization_override.verified.txt index 4bc4277b09..ce3f8a7ae1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Customization_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Customization_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt index cf558502c7..bfbcdc9bc9 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt @@ -191,7 +191,7 @@ namespace Whatever return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt index c58044fcf5..1fd5f79838 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Exception_override.verified.txt index 266c5fde9d..92f39026f1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt index 40521e7e0a..2aff0042d2 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt index e30b0e6b78..8f657b9523 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Override_all.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Override_all.verified.txt index edde37d42c..5b043633d9 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Override_all.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Override_all.verified.txt @@ -188,7 +188,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Type_override.verified.txt index 62799803c5..74586a32b1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/GlobalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt index 719edb8f42..6b0f17cae8 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Conversion_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Conversion_override.verified.txt index 42ae4f2cd6..ab2eadc241 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Conversion_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Conversion_override.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults.verified.txt index c58044fcf5..1fd5f79838 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults_with_validation.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults_with_validation.verified.txt index 5d00acba79..f7f9ed9558 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults_with_validation.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults_with_validation.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt index d4ef77d1e0..c7f473fbfb 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt @@ -230,7 +230,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Exception_override.verified.txt index 266c5fde9d..92f39026f1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt index e30b0e6b78..8f657b9523 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Override_global_config_locally.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Override_global_config_locally.verified.txt index 3adb3b2e79..8c6fb993a6 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Override_global_config_locally.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Override_global_config_locally.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Type_override.verified.txt index 62799803c5..74586a32b1 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v6.0/LocalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt index 17ca45bc72..00c24e0b06 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Customization_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Customization_override.verified.txt index 5de1d3a997..7e368923ff 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Customization_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Customization_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt index e5fb59e2ec..501f626e75 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt @@ -191,7 +191,7 @@ namespace Whatever return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt index 817bdc32b2..13f4481720 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Exception_override.verified.txt index 67dbade560..64e363a805 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt index eb08ceaf0e..554a7c223c 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt index ded0ca0eb9..171abd5813 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Override_all.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Override_all.verified.txt index 9ce177c98a..2e569a500f 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Override_all.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Override_all.verified.txt @@ -188,7 +188,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Type_override.verified.txt index f3d33ee3fe..d0c185d17e 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/GlobalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt index 17ca45bc72..00c24e0b06 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Conversion_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Conversion_override.verified.txt index 57202e2355..4906beb644 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Conversion_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Conversion_override.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults.verified.txt index 817bdc32b2..13f4481720 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults_with_validation.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults_with_validation.verified.txt index 544bc2d512..87712cf46c 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults_with_validation.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults_with_validation.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt index a75b1afafb..4d3bbe5464 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt @@ -230,7 +230,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Exception_override.verified.txt index 67dbade560..64e363a805 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt index ded0ca0eb9..171abd5813 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Override_global_config_locally.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Override_global_config_locally.verified.txt index 92e18bb2b2..8115bfb278 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Override_global_config_locally.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Override_global_config_locally.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Type_override.verified.txt index f3d33ee3fe..d0c185d17e 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v7.0/LocalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt index a30e8b1aa8..eb8944fafe 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Customization_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Customization_override.verified.txt index cdc83109ef..d4bd0b0314 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Customization_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Customization_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt index b071487122..516566deb4 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt @@ -191,7 +191,7 @@ namespace Whatever return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt index 1fc8d701f7..fbc8b01639 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Exception_override.verified.txt index 562e986e03..326d8cda57 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt index 94806bc881..2cec855dff 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt index dc5c9fcd1b..383f040c29 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Override_all.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Override_all.verified.txt index 9ce177c98a..2e569a500f 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Override_all.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Override_all.verified.txt @@ -188,7 +188,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Type_override.verified.txt index b5e19b035f..6c924301a5 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/GlobalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt index a30e8b1aa8..eb8944fafe 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Conversion_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Conversion_override.verified.txt index ebb7969072..558cf22426 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Conversion_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Conversion_override.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults.verified.txt index 1fc8d701f7..fbc8b01639 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults_with_validation.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults_with_validation.verified.txt index 0c4ebd4a85..92c6f84088 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults_with_validation.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults_with_validation.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt index 1bbc0561a5..740447210a 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Defaults_with_validation_and_instances.verified.txt @@ -230,7 +230,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Exception_override.verified.txt index 562e986e03..326d8cda57 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Exception_override.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt index dc5c9fcd1b..383f040c29 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.OmitDebugAttributes_override.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Override_global_config_locally.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Override_global_config_locally.verified.txt index 7e2af7cc7e..df8ca3f352 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Override_global_config_locally.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Override_global_config_locally.verified.txt @@ -226,7 +226,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Type_override.verified.txt index b5e19b035f..6c924301a5 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v8.0/LocalConfigTests.Type_override.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-struct67D9OX1YBs.verified.txt index 682d2e3fb1..bc64323c38 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-struct8Ls5UqsVLU.verified.txt index d6eb8bb95c..0179012ae9 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structCE600pzF1D.verified.txt index 274bb2d432..815d67b0d8 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structIKki7umr9M.verified.txt index b8f20aa252..37d83339cb 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structQ31xUPuiiq.verified.txt index 61a58cffb7..4bed08681e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structQLrIUxEPAl.verified.txt index 6c1490cfd2..be35248ee5 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structgAKsr9pm9w.verified.txt index 203d884bd5..437fa2ae3f 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structiaGiO6yFOT.verified.txt index f6bd1326f3..1e9efd0bd3 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structsThydxQv3t.verified.txt index d6eb8bb95c..0179012ae9 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-struct67D9OX1YBs.verified.txt index dbca3604d2..ad72f36b2f 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-struct8Ls5UqsVLU.verified.txt index cfa045f46e..4e638b6708 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structCE600pzF1D.verified.txt index be0f42c2ec..23d08a2292 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structIKki7umr9M.verified.txt index 6ed7857a1f..c21d7bee2e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structQ31xUPuiiq.verified.txt index f9e0733de9..77f1f77553 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structQLrIUxEPAl.verified.txt index dce6911611..d38b39fc4a 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structgAKsr9pm9w.verified.txt index d13c1ca427..7caffe4b9e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structiaGiO6yFOT.verified.txt index 2aa11b9502..e9ae4b8749 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structsThydxQv3t.verified.txt index cfa045f46e..4e638b6708 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v3.1/readonly-partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-struct67D9OX1YBs.verified.txt index c7c8888dbc..f5ae87605a 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-struct8Ls5UqsVLU.verified.txt index c9c46d6ccc..805bebdd43 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structCE600pzF1D.verified.txt index 6c16b2c924..f7115bf355 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structIKki7umr9M.verified.txt index 8fbb5b8f0c..fd6490fa35 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structQ31xUPuiiq.verified.txt index ccef16af47..7108087845 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structQLrIUxEPAl.verified.txt index 91fa4981fa..f9267b0baf 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structgAKsr9pm9w.verified.txt index b9adb33519..b9a0cc5faf 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structiaGiO6yFOT.verified.txt index 1e4d8469cd..5a92468e74 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structsThydxQv3t.verified.txt index c9c46d6ccc..805bebdd43 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-struct67D9OX1YBs.verified.txt index b13b6c2197..9d445df975 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-struct8Ls5UqsVLU.verified.txt index b0d980a01f..b7b2e0ae18 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structCE600pzF1D.verified.txt index b0936abf88..86967ded64 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structIKki7umr9M.verified.txt index 4d73ed68e8..4a1850af81 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structQ31xUPuiiq.verified.txt index 5eeab9b159..44c92d642e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structQLrIUxEPAl.verified.txt index 530e808606..cc8a55ded5 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structgAKsr9pm9w.verified.txt index f8140c8129..ecbec60bea 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structiaGiO6yFOT.verified.txt index b0a5bb33d9..277fdd5f54 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structsThydxQv3t.verified.txt index b0d980a01f..b7b2e0ae18 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.6.1/readonly-partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-struct67D9OX1YBs.verified.txt index 41ee27992d..db4b021249 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-struct8Ls5UqsVLU.verified.txt index 9f007dd6d5..5efab52818 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structCE600pzF1D.verified.txt index c9a928a71d..5a1809311c 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structIKki7umr9M.verified.txt index d3499b25b1..ee0e8ad7a7 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structQ31xUPuiiq.verified.txt index e1593df2f6..71a6af7981 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structQLrIUxEPAl.verified.txt index 72c6341739..fac71dbdcf 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structgAKsr9pm9w.verified.txt index d17709f9d3..367a94e6ff 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structiaGiO6yFOT.verified.txt index 99880d2276..f7bfbf4d07 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structsThydxQv3t.verified.txt index 9f007dd6d5..5efab52818 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-struct67D9OX1YBs.verified.txt index 109f125425..d982f54b2b 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-struct8Ls5UqsVLU.verified.txt index 625a695b90..a02cd69156 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structCE600pzF1D.verified.txt index 4eefb7047b..d93b003607 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structIKki7umr9M.verified.txt index 88a2878184..66dbe04be1 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structQ31xUPuiiq.verified.txt index 8563d0fa94..1f28ee7bd3 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structQLrIUxEPAl.verified.txt index 6f8ba5dae7..9140a5f89e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structgAKsr9pm9w.verified.txt index 0e1079e42a..b0c2775aec 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structiaGiO6yFOT.verified.txt index ff92ab9f81..ee8c9c081e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structsThydxQv3t.verified.txt index 625a695b90..a02cd69156 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v4.8/readonly-partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-struct67D9OX1YBs.verified.txt index 682d2e3fb1..bc64323c38 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-struct8Ls5UqsVLU.verified.txt index d6eb8bb95c..0179012ae9 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structCE600pzF1D.verified.txt index 274bb2d432..815d67b0d8 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structIKki7umr9M.verified.txt index b8f20aa252..37d83339cb 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structQ31xUPuiiq.verified.txt index 61a58cffb7..4bed08681e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structQLrIUxEPAl.verified.txt index 6c1490cfd2..be35248ee5 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structgAKsr9pm9w.verified.txt index 203d884bd5..437fa2ae3f 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structiaGiO6yFOT.verified.txt index f6bd1326f3..1e9efd0bd3 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structsThydxQv3t.verified.txt index d6eb8bb95c..0179012ae9 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-struct67D9OX1YBs.verified.txt index dbca3604d2..ad72f36b2f 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-struct8Ls5UqsVLU.verified.txt index cfa045f46e..4e638b6708 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structCE600pzF1D.verified.txt index be0f42c2ec..23d08a2292 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structIKki7umr9M.verified.txt index 6ed7857a1f..c21d7bee2e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structQ31xUPuiiq.verified.txt index f9e0733de9..77f1f77553 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structQLrIUxEPAl.verified.txt index dce6911611..d38b39fc4a 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structgAKsr9pm9w.verified.txt index d13c1ca427..7caffe4b9e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structiaGiO6yFOT.verified.txt index 2aa11b9502..e9ae4b8749 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structsThydxQv3t.verified.txt index cfa045f46e..4e638b6708 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v5.0/readonly-partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-struct67D9OX1YBs.verified.txt index 682d2e3fb1..bc64323c38 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-struct8Ls5UqsVLU.verified.txt index d6eb8bb95c..0179012ae9 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structCE600pzF1D.verified.txt index 274bb2d432..815d67b0d8 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structIKki7umr9M.verified.txt index b8f20aa252..37d83339cb 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structQ31xUPuiiq.verified.txt index 61a58cffb7..4bed08681e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structQLrIUxEPAl.verified.txt index 6c1490cfd2..be35248ee5 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structgAKsr9pm9w.verified.txt index 203d884bd5..437fa2ae3f 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structiaGiO6yFOT.verified.txt index f6bd1326f3..1e9efd0bd3 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structsThydxQv3t.verified.txt index d6eb8bb95c..0179012ae9 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-struct67D9OX1YBs.verified.txt index dbca3604d2..ad72f36b2f 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-struct8Ls5UqsVLU.verified.txt index cfa045f46e..4e638b6708 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structCE600pzF1D.verified.txt index be0f42c2ec..23d08a2292 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structIKki7umr9M.verified.txt index 6ed7857a1f..c21d7bee2e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structQ31xUPuiiq.verified.txt index f9e0733de9..77f1f77553 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structQLrIUxEPAl.verified.txt index dce6911611..d38b39fc4a 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structgAKsr9pm9w.verified.txt index d13c1ca427..7caffe4b9e 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structiaGiO6yFOT.verified.txt index 2aa11b9502..e9ae4b8749 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structsThydxQv3t.verified.txt index cfa045f46e..4e638b6708 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v6.0/readonly-partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-struct67D9OX1YBs.verified.txt index abd2487393..8cf5624d3d 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-struct8Ls5UqsVLU.verified.txt index b27c2515ca..c7cc4cda68 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structCE600pzF1D.verified.txt index 0f03909622..3714648c53 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structIKki7umr9M.verified.txt index c6c289cb70..2a9e9aa4a3 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structQ31xUPuiiq.verified.txt index b677503963..81061c5c09 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structQLrIUxEPAl.verified.txt index 1285bc8cf8..129ac33546 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structgAKsr9pm9w.verified.txt index cd88fef6ce..b431c06d1d 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structiaGiO6yFOT.verified.txt index 926d4a8349..449c4c515a 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structsThydxQv3t.verified.txt index b27c2515ca..c7cc4cda68 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-struct67D9OX1YBs.verified.txt index 384d16a384..739922d24c 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-struct8Ls5UqsVLU.verified.txt index 4581c19dfb..c505bf596c 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structCE600pzF1D.verified.txt index 3dfe4de85a..92d4475b85 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structIKki7umr9M.verified.txt index 8d55270fbd..c49abf33e1 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structQ31xUPuiiq.verified.txt index f34259afdc..1d31925859 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structQLrIUxEPAl.verified.txt index 0ddd602da9..b045267041 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structgAKsr9pm9w.verified.txt index d30ca2b1d4..3169367059 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structiaGiO6yFOT.verified.txt index 3c4e5538be..c880f8ef0d 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structsThydxQv3t.verified.txt index 4581c19dfb..c505bf596c 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v7.0/readonly-partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-struct67D9OX1YBs.verified.txt index 988fafa2e9..815d2b6a6d 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-struct8Ls5UqsVLU.verified.txt index 2ae6b570d7..8d3b24b90c 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structCE600pzF1D.verified.txt index 874efeec0b..720697732f 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structIKki7umr9M.verified.txt index 8de9e10225..a763baa8da 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structQ31xUPuiiq.verified.txt index f60e952e08..e0e3f96a31 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structQLrIUxEPAl.verified.txt index e1d6984f61..2c9a13157f 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structgAKsr9pm9w.verified.txt index 15c0cea21a..d64c0b81a9 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structiaGiO6yFOT.verified.txt index 8ad09f8f3f..24cf95ca7b 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structsThydxQv3t.verified.txt index 2ae6b570d7..8d3b24b90c 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-struct67D9OX1YBs.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-struct67D9OX1YBs.verified.txt index 3060509699..3c7926e887 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-struct67D9OX1YBs.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-struct67D9OX1YBs.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-struct8Ls5UqsVLU.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-struct8Ls5UqsVLU.verified.txt index f3ec592dcd..a684651a53 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-struct8Ls5UqsVLU.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-struct8Ls5UqsVLU.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structCE600pzF1D.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structCE600pzF1D.verified.txt index 66cfe0d443..80e6626b53 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structCE600pzF1D.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structCE600pzF1D.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structIKki7umr9M.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structIKki7umr9M.verified.txt index f95b893e9c..4a1a6e0e89 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structIKki7umr9M.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structIKki7umr9M.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structQ31xUPuiiq.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structQ31xUPuiiq.verified.txt index 3e42ce84d9..3d632ce3f0 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structQ31xUPuiiq.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structQ31xUPuiiq.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structQLrIUxEPAl.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structQLrIUxEPAl.verified.txt index 9e04597835..76a6305aae 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structQLrIUxEPAl.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structQLrIUxEPAl.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structgAKsr9pm9w.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structgAKsr9pm9w.verified.txt index dba28d7517..a9f5d3c098 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structgAKsr9pm9w.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structgAKsr9pm9w.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structiaGiO6yFOT.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structiaGiO6yFOT.verified.txt index ce3bb81659..656cec728b 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structiaGiO6yFOT.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structiaGiO6yFOT.verified.txt @@ -200,7 +200,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structsThydxQv3t.verified.txt b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structsThydxQv3t.verified.txt index f3ec592dcd..a684651a53 100644 --- a/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structsThydxQv3t.verified.txt +++ b/tests/SnapshotTests/ConversionPermutations/snapshots/snap-v8.0/readonly-partial-structsThydxQv3t.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyIntVo && Equals((MyIntVo)obj); } - public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyIntVo left, MyIntVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyIntVo left, MyIntVo right) => !(left == right); public static global::System.Boolean operator ==(MyIntVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyIntVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/EfCoreGeneration/snapshots/snap-v8.0/EfCoreGenerationTests.Writes_efcore_converters_for_escaped_types.verified.txt b/tests/SnapshotTests/EfCoreGeneration/snapshots/snap-v8.0/EfCoreGenerationTests.Writes_efcore_converters_for_escaped_types.verified.txt index f83021661a..b983766cca 100644 --- a/tests/SnapshotTests/EfCoreGeneration/snapshots/snap-v8.0/EfCoreGenerationTests.Writes_efcore_converters_for_escaped_types.verified.txt +++ b/tests/SnapshotTests/EfCoreGeneration/snapshots/snap-v8.0/EfCoreGenerationTests.Writes_efcore_converters_for_escaped_types.verified.txt @@ -1161,7 +1161,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is @byte && Equals((@byte)obj); } - public static global::System.Boolean operator ==(@byte left, @byte right) => Equals(left, right); + public static global::System.Boolean operator ==(@byte left, @byte right) => left.Equals(right); public static global::System.Boolean operator !=(@byte left, @byte right) => !(left == right); public static global::System.Boolean operator ==(@byte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(@byte left, System.Byte right) => !Equals(left.Value, right); @@ -2058,7 +2058,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo1 && Equals((MyVo1)obj); } - public static global::System.Boolean operator ==(MyVo1 left, MyVo1 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo1 left, MyVo1 right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo1 left, MyVo1 right) => !(left == right); public static global::System.Boolean operator ==(MyVo1 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo1 left, System.Int32 right) => !Equals(left.Value, right); @@ -2987,7 +2987,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo3 && Equals((MyVo3)obj); } - public static global::System.Boolean operator ==(MyVo3 left, MyVo3 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo3 left, MyVo3 right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo3 left, MyVo3 right) => !(left == right); public static global::System.Boolean operator ==(MyVo3 left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo3 left, System.String right) => !Equals(left.Value, right); @@ -3285,7 +3285,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo4 && Equals((MyVo4)obj); } - public static global::System.Boolean operator ==(MyVo4 left, MyVo4 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo4 left, MyVo4 right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo4 left, MyVo4 right) => !(left == right); public static global::System.Boolean operator ==(MyVo4 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo4 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/EfCoreGeneration/snapshots/snap-v8.0/EfCoreGenerationTests.Writes_efcore_converters_if_attribute_present_and_on_net_8_or_greater.verified.txt b/tests/SnapshotTests/EfCoreGeneration/snapshots/snap-v8.0/EfCoreGenerationTests.Writes_efcore_converters_if_attribute_present_and_on_net_8_or_greater.verified.txt index 495ccefa7d..4b9644f05d 100644 --- a/tests/SnapshotTests/EfCoreGeneration/snapshots/snap-v8.0/EfCoreGenerationTests.Writes_efcore_converters_if_attribute_present_and_on_net_8_or_greater.verified.txt +++ b/tests/SnapshotTests/EfCoreGeneration/snapshots/snap-v8.0/EfCoreGenerationTests.Writes_efcore_converters_if_attribute_present_and_on_net_8_or_greater.verified.txt @@ -900,7 +900,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo1 && Equals((Vo1)obj); } - public static global::System.Boolean operator ==(Vo1 left, Vo1 right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo1 left, Vo1 right) => left.Equals(right); public static global::System.Boolean operator !=(Vo1 left, Vo1 right) => !(left == right); public static global::System.Boolean operator ==(Vo1 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo1 left, System.Int32 right) => !Equals(left.Value, right); @@ -1491,7 +1491,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo2 && Equals((Vo2)obj); } - public static global::System.Boolean operator ==(Vo2 left, Vo2 right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo2 left, Vo2 right) => left.Equals(right); public static global::System.Boolean operator !=(Vo2 left, Vo2 right) => !(left == right); public static global::System.Boolean operator ==(Vo2 left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo2 left, System.String right) => !Equals(left.Value, right); @@ -1789,7 +1789,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo1 && Equals((Vo1)obj); } - public static global::System.Boolean operator ==(Vo1 left, Vo1 right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo1 left, Vo1 right) => left.Equals(right); public static global::System.Boolean operator !=(Vo1 left, Vo1 right) => !(left == right); public static global::System.Boolean operator ==(Vo1 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo1 left, System.Int32 right) => !Equals(left.Value, right); @@ -2380,7 +2380,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Vo2 && Equals((Vo2)obj); } - public static global::System.Boolean operator ==(Vo2 left, Vo2 right) => Equals(left, right); + public static global::System.Boolean operator ==(Vo2 left, Vo2 right) => left.Equals(right); public static global::System.Boolean operator !=(Vo2 left, Vo2 right) => !(left == right); public static global::System.Boolean operator ==(Vo2 left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Vo2 left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt index 339fce74c8..2e9a370689 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt index e71ef2a79d..38978e08a7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt index 180e879ffe..ec895c3c0d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt index 2c66caeebb..99c6ae6450 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt index 5dbdcd6bd0..0f01a375d0 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt index e9318aa2a7..8f32d30712 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt index 07a500a553..2736422247 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonebyte && Equals((escapedTestspublic_readonly_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt index b03184648c..be91e689ac 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonedouble && Equals((escapedTestspublic_readonly_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt index 897a7e1b09..18606535f4 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt index b02f37e3b6..6023805965 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt index 4c55134b5b..42b3cbbab6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt index 9f0008d9d9..6496df9537 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt index 5d2064d439..351d089c5b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt index a60ae20c8f..68a3a4e7e1 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt index 4ecb3a0d60..60d4a0fa87 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt index 9785fbe350..bb7a21b635 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt index f6fbff97d6..be5d7cd764 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt index 55d0d9249e..3c50b1f3b7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt index ba0a91b24f..43aa083fb2 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt index 1196b79530..28e5add8a7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt index 29eae4dce4..8be7420a0c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt index 833f349430..f31b18f3f5 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt index c5a333760c..e21cd14357 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt index 8f47ae3489..8e8577eecb 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt index 13d7f94be0..0bc4e05f59 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt index b5b6dc58fd..3244dd61f9 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt index ab05f4ef99..85a5798b41 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt index c4f0e3a667..d1a58bd956 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt index 4cdfc1050f..52d71bfd85 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonestring && Equals((escapedTestspublic_readonly_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt index beafdf6c45..418757c6a6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonedouble && Equals((escapedTestspublic_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt index 27a3bcd832..4356a3d648 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt index 747b532528..104983e833 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt index 7469751207..2d6dd64b02 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt index 0eacdd2e55..6c1cd44a71 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt index d55550a16c..8455f9087c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt index d26264ace9..d2704366fc 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt index 24b78d691e..9ea923a5aa 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt index 424399c4b9..b487c3e76b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt index 091d802ac7..6d2b1d0118 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt index d84647aa6c..4449354b98 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonestring && Equals((escapedTestspublic_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt index ea145c89eb..4ad43a60b3 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonebyte && Equals((escapedTestspublic_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt index 4cb20c0e8e..8fa231ccf7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v3.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt index 339fce74c8..2e9a370689 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt index d3125afb3b..815d48362d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt index 180e879ffe..ec895c3c0d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt index 2c66caeebb..99c6ae6450 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt index 82cd2988ee..c5344c9c6e 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt index e9318aa2a7..8f32d30712 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt index b4e738eb86..62ebbc0741 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonebyte && Equals((escapedTestspublic_readonly_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt index 2ea5522d6e..6c913025c5 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonedouble && Equals((escapedTestspublic_readonly_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt index 907fdc94ae..a875bd1fb4 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt index b02f37e3b6..6023805965 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt index 8f2d71446d..718243abd0 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt index 01d399758f..a335651b0b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt index 5d2064d439..351d089c5b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt index a60ae20c8f..68a3a4e7e1 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt index dec3f84f53..deda483ab6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt index 9785fbe350..bb7a21b635 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt index f6fbff97d6..be5d7cd764 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt index 55d0d9249e..3c50b1f3b7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt index d6de38bd0b..15dcd9dc85 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt index 1196b79530..28e5add8a7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt index f7e066ca74..4d84a9e63b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt index 6b2c3239f1..97a49d566c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt index c5a333760c..e21cd14357 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt index 8f47ae3489..8e8577eecb 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt index 13d7f94be0..0bc4e05f59 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt index ac01570de4..f84ef95fb6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt index ab05f4ef99..85a5798b41 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt index c4f0e3a667..d1a58bd956 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt index 4cdfc1050f..52d71bfd85 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonestring && Equals((escapedTestspublic_readonly_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt index 621532288c..4af76343cd 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonedouble && Equals((escapedTestspublic_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt index 27a3bcd832..4356a3d648 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt index 4d6fd7d53e..5f256e1cf6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt index 7469751207..2d6dd64b02 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt index 0eacdd2e55..6c1cd44a71 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt index 5639e087dc..062056af6b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt index d26264ace9..d2704366fc 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt index 695ca10672..594a694d70 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt index 751bc10cf2..f92e61efb0 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt index 091d802ac7..6d2b1d0118 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt index d84647aa6c..4449354b98 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonestring && Equals((escapedTestspublic_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt index f7a1acca12..3b4821a43c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonebyte && Equals((escapedTestspublic_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt index 4cb20c0e8e..8fa231ccf7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.6.1/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt index 339fce74c8..2e9a370689 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt index d3125afb3b..815d48362d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt index 180e879ffe..ec895c3c0d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt index 2c66caeebb..99c6ae6450 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt index 750655670a..d1620b1fc7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt index e9318aa2a7..8f32d30712 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt index 02780e0dc1..ab8d176f0a 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonebyte && Equals((escapedTestspublic_readonly_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt index cc5700f8d6..b269cd5ca7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonedouble && Equals((escapedTestspublic_readonly_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt index 907fdc94ae..a875bd1fb4 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt index b02f37e3b6..6023805965 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt index 98b74d7425..d616180670 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt index b19d575d17..e274e7a008 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt index 5d2064d439..351d089c5b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt index a60ae20c8f..68a3a4e7e1 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt index dec3f84f53..deda483ab6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt index 9785fbe350..bb7a21b635 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt index f6fbff97d6..be5d7cd764 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt index 55d0d9249e..3c50b1f3b7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt index d6de38bd0b..15dcd9dc85 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt index 1196b79530..28e5add8a7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt index f7e066ca74..4d84a9e63b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt index 80a81b9439..10a4da0fcd 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt index c5a333760c..e21cd14357 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt index 8f47ae3489..8e8577eecb 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt index 13d7f94be0..0bc4e05f59 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt index ac01570de4..f84ef95fb6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt index ab05f4ef99..85a5798b41 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt index c4f0e3a667..d1a58bd956 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt index 4cdfc1050f..52d71bfd85 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonestring && Equals((escapedTestspublic_readonly_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt index 797944d662..a2a65082b3 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonedouble && Equals((escapedTestspublic_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt index 27a3bcd832..4356a3d648 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt index 68bc0cf854..39ff673b01 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt index 7469751207..2d6dd64b02 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt index 0eacdd2e55..6c1cd44a71 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt index 375f7a5bc7..ef0ca3b2e6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt index d26264ace9..d2704366fc 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt index 3e6f225712..bc2d7ca825 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt index 86921438b7..b6b64964ac 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt index 091d802ac7..6d2b1d0118 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt index d84647aa6c..4449354b98 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonestring && Equals((escapedTestspublic_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt index 6db4afa44f..bc0e54b80b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonebyte && Equals((escapedTestspublic_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt index 4cb20c0e8e..8fa231ccf7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v4.8/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt index 339fce74c8..2e9a370689 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt index e71ef2a79d..38978e08a7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt index 180e879ffe..ec895c3c0d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt index 2c66caeebb..99c6ae6450 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt index 5dbdcd6bd0..0f01a375d0 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt index e9318aa2a7..8f32d30712 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt index 07a500a553..2736422247 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonebyte && Equals((escapedTestspublic_readonly_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt index b03184648c..be91e689ac 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonedouble && Equals((escapedTestspublic_readonly_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt index 897a7e1b09..18606535f4 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt index b02f37e3b6..6023805965 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt index 4c55134b5b..42b3cbbab6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt index 9f0008d9d9..6496df9537 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt index 5d2064d439..351d089c5b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt index a60ae20c8f..68a3a4e7e1 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt index 4ecb3a0d60..60d4a0fa87 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt index 9785fbe350..bb7a21b635 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt index f6fbff97d6..be5d7cd764 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt index 55d0d9249e..3c50b1f3b7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt index ba0a91b24f..43aa083fb2 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt index 1196b79530..28e5add8a7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt index 29eae4dce4..8be7420a0c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt index 833f349430..f31b18f3f5 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt index c5a333760c..e21cd14357 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt index 8f47ae3489..8e8577eecb 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt index 13d7f94be0..0bc4e05f59 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt index b5b6dc58fd..3244dd61f9 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt index ab05f4ef99..85a5798b41 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt index c4f0e3a667..d1a58bd956 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt index 4cdfc1050f..52d71bfd85 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonestring && Equals((escapedTestspublic_readonly_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt index beafdf6c45..418757c6a6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonedouble && Equals((escapedTestspublic_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt index 27a3bcd832..4356a3d648 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt index 747b532528..104983e833 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt index 7469751207..2d6dd64b02 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt index 0eacdd2e55..6c1cd44a71 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt index d55550a16c..8455f9087c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt index d26264ace9..d2704366fc 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt index 24b78d691e..9ea923a5aa 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt index 424399c4b9..b487c3e76b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt index 091d802ac7..6d2b1d0118 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt index d84647aa6c..4449354b98 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonestring && Equals((escapedTestspublic_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt index ea145c89eb..4ad43a60b3 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonebyte && Equals((escapedTestspublic_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt index 4cb20c0e8e..8fa231ccf7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v5.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt index 339fce74c8..2e9a370689 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt index e71ef2a79d..38978e08a7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt index 180e879ffe..ec895c3c0d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt index 2c66caeebb..99c6ae6450 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt index 5dbdcd6bd0..0f01a375d0 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt index e9318aa2a7..8f32d30712 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt index 07a500a553..2736422247 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonebyte && Equals((escapedTestspublic_readonly_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt index b03184648c..be91e689ac 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonedouble && Equals((escapedTestspublic_readonly_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt index 897a7e1b09..18606535f4 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt index b02f37e3b6..6023805965 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt index 4c55134b5b..42b3cbbab6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt index 9f0008d9d9..6496df9537 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt index 5d2064d439..351d089c5b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt index a60ae20c8f..68a3a4e7e1 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt index 4ecb3a0d60..60d4a0fa87 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt index 9785fbe350..bb7a21b635 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt index f6fbff97d6..be5d7cd764 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt index 55d0d9249e..3c50b1f3b7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt index ba0a91b24f..43aa083fb2 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt index 1196b79530..28e5add8a7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt index 29eae4dce4..8be7420a0c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt index 833f349430..f31b18f3f5 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt index c5a333760c..e21cd14357 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt index 8f47ae3489..8e8577eecb 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt index 13d7f94be0..0bc4e05f59 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt index b5b6dc58fd..3244dd61f9 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt index ab05f4ef99..85a5798b41 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt index c4f0e3a667..d1a58bd956 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt index 4cdfc1050f..52d71bfd85 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonestring && Equals((escapedTestspublic_readonly_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt index beafdf6c45..418757c6a6 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonedouble && Equals((escapedTestspublic_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt index 27a3bcd832..4356a3d648 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt index 747b532528..104983e833 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt index 7469751207..2d6dd64b02 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt index 0eacdd2e55..6c1cd44a71 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt index d55550a16c..8455f9087c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt index d26264ace9..d2704366fc 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt index 24b78d691e..9ea923a5aa 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt index 424399c4b9..b487c3e76b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt index 091d802ac7..6d2b1d0118 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt index d84647aa6c..4449354b98 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonestring && Equals((escapedTestspublic_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt index ea145c89eb..4ad43a60b3 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonebyte && Equals((escapedTestspublic_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt index 4cb20c0e8e..8fa231ccf7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v6.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt index 339fce74c8..2e9a370689 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt index 59c987cb64..ef1f93bd1c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt index 180e879ffe..ec895c3c0d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt index 2c66caeebb..99c6ae6450 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt index 7a219bd679..0ed0979e2e 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt index e9318aa2a7..8f32d30712 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt index 0226436e4a..4f3ec1dbce 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonebyte && Equals((escapedTestspublic_readonly_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt index 5cc6428fa7..076ac0cafa 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonedouble && Equals((escapedTestspublic_readonly_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt index b7e3158ad8..d5be6a7a2f 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt index b02f37e3b6..6023805965 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt index cd9032a088..5c034c018e 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt index 0dfeab224a..425ef48c96 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt index c8736d61db..0dc8e21cf3 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt index a60ae20c8f..68a3a4e7e1 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt index fd47303db0..f8e834d474 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt index 66e8418bac..68cc6cd132 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt index f6fbff97d6..be5d7cd764 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt index 55d0d9249e..3c50b1f3b7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt index f862099888..df0eb16e76 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt index e1c362d140..6bb2915fd8 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt index e3bed42479..f236239e79 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt index 60a7e4a83e..c16267a2bf 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt index c5a333760c..e21cd14357 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt index 8f47ae3489..8e8577eecb 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt index 13d7f94be0..0bc4e05f59 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt index a7fc6093df..1e1024e2f3 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt index ab05f4ef99..85a5798b41 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt index 8cb8aa945e..bc33c84da2 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt index bc2144bb62..4774962d36 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonestring && Equals((escapedTestspublic_readonly_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt index b8d653bd5a..a261893a95 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonedouble && Equals((escapedTestspublic_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt index 27a3bcd832..4356a3d648 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt index 3f9a1a7326..a38cdf1b4c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt index 7469751207..2d6dd64b02 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt index 0eacdd2e55..6c1cd44a71 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt index 0bd3567f53..22d2d3f0a2 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt index d26264ace9..d2704366fc 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt index 9335695dce..744eeba984 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt index 67db7446b6..af775f1a0d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt index 091d802ac7..6d2b1d0118 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt index 17640834a7..4a602ab671 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonestring && Equals((escapedTestspublic_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt index ac882a1a40..213f5b6f28 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonebyte && Equals((escapedTestspublic_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt index 4cb20c0e8e..8fa231ccf7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v7.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_0b2fc80039bc486f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_0b2fc80039bc486f.verified.txt index e9459bfd74..e9ece6ae37 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_0b2fc80039bc486f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_0b2fc80039bc486f.verified.txt @@ -317,7 +317,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_104a5ff05f0db967.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_104a5ff05f0db967.verified.txt index ed52b93650..44493ea4a7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_104a5ff05f0db967.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_104a5ff05f0db967.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_11bee1513b16a9be.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_11bee1513b16a9be.verified.txt index 000136caed..347357775c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_11bee1513b16a9be.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_11bee1513b16a9be.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_135c59118680f48e.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_135c59118680f48e.verified.txt index d769c5cab7..0f7209e97a 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_135c59118680f48e.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_135c59118680f48e.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_28be836f2ab033dc.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_28be836f2ab033dc.verified.txt index b8632c7488..04ba7fa1cb 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_28be836f2ab033dc.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_28be836f2ab033dc.verified.txt @@ -317,7 +317,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_291b6fd076c0e246.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_291b6fd076c0e246.verified.txt index 5db157ade3..0f64dfa2ae 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_291b6fd076c0e246.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_291b6fd076c0e246.verified.txt @@ -318,7 +318,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_291d0bc9a252cc85.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_291d0bc9a252cc85.verified.txt index b9c326968b..9242863ec2 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_291d0bc9a252cc85.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_291d0bc9a252cc85.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_365592047b7d5a26.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_365592047b7d5a26.verified.txt index 0d013a817f..f2ccecd780 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_365592047b7d5a26.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_365592047b7d5a26.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_36ed836857ad1074.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_36ed836857ad1074.verified.txt index 36d51d33a4..abb8f231c4 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_36ed836857ad1074.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_36ed836857ad1074.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonedouble && Equals((escapedTestspublic_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_392023cc6b8fb14b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_392023cc6b8fb14b.verified.txt index 5119dc5615..3c71a25176 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_392023cc6b8fb14b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_392023cc6b8fb14b.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_40f047adf1f3532b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_40f047adf1f3532b.verified.txt index e2d27f3f65..961a905675 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_40f047adf1f3532b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_40f047adf1f3532b.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_50107e37b6c281f7.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_50107e37b6c281f7.verified.txt index b7a7c1fbf1..9bcfca7592 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_50107e37b6c281f7.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_50107e37b6c281f7.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_54f6c6bc47a57718.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_54f6c6bc47a57718.verified.txt index ea2127f404..3454ab081f 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_54f6c6bc47a57718.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_54f6c6bc47a57718.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_567c13855e60ba86.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_567c13855e60ba86.verified.txt index 4bce5406fa..794ce0f084 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_567c13855e60ba86.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_567c13855e60ba86.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_57b0dc74cdf7a3fc.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_57b0dc74cdf7a3fc.verified.txt index e52972b982..70b1e371d2 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_57b0dc74cdf7a3fc.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_57b0dc74cdf7a3fc.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_58038a78fa49c898.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_58038a78fa49c898.verified.txt index 8c7cb6606e..2f98cb25d9 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_58038a78fa49c898.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_58038a78fa49c898.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_5aad9b299994231f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_5aad9b299994231f.verified.txt index 81fdff34ca..8a188ac7c8 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_5aad9b299994231f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_5aad9b299994231f.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_66aa605d729a3bb6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_66aa605d729a3bb6.verified.txt index af7db40594..18952e5a74 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_66aa605d729a3bb6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_66aa605d729a3bb6.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_6c4eba76ec5d1088.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_6c4eba76ec5d1088.verified.txt index 2ea9096f34..52b2c9545a 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_6c4eba76ec5d1088.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_6c4eba76ec5d1088.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_77b43a623684d39c.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_77b43a623684d39c.verified.txt index 8de9280c19..5bdacb4014 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_77b43a623684d39c.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_77b43a623684d39c.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_7b85220c41b26579.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_7b85220c41b26579.verified.txt index db7606562d..fa0eecf85c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_7b85220c41b26579.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_7b85220c41b26579.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_96135dc4bcf54d2b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_96135dc4bcf54d2b.verified.txt index 23fc9c36d3..b73deed59d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_96135dc4bcf54d2b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_96135dc4bcf54d2b.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9a0e1c590d3ebd3b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9a0e1c590d3ebd3b.verified.txt index 6d72603dae..89584cbb3e 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9a0e1c590d3ebd3b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9a0e1c590d3ebd3b.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b38eefdbaafb0a5.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b38eefdbaafb0a5.verified.txt index 3ebdd84059..9360f17eac 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b38eefdbaafb0a5.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b38eefdbaafb0a5.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b80372401082da7.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b80372401082da7.verified.txt index 06e3eaeaea..d4331a0e12 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b80372401082da7.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b80372401082da7.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b926e43df789556.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b926e43df789556.verified.txt index 8a16dc7139..c58ad1dfbb 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b926e43df789556.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9b926e43df789556.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9edf75aa18e466ac.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9edf75aa18e466ac.verified.txt index 4b13a53250..a13a89b71b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9edf75aa18e466ac.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_9edf75aa18e466ac.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a2c530119d8a204e.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a2c530119d8a204e.verified.txt index efa1dd7fe6..77eab4dc24 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a2c530119d8a204e.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a2c530119d8a204e.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonebyte && Equals((escapedTestspublic_readonly_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a5bc5714811aac66.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a5bc5714811aac66.verified.txt index 583d008799..3fe7b7241e 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a5bc5714811aac66.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a5bc5714811aac66.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a7cbf9d3b7dbba8f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a7cbf9d3b7dbba8f.verified.txt index 7a50e3e5ac..e2e4546d1d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a7cbf9d3b7dbba8f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_a7cbf9d3b7dbba8f.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_ac22f436dda4f72a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_ac22f436dda4f72a.verified.txt index 37672be39c..85bb09f103 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_ac22f436dda4f72a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_ac22f436dda4f72a.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonebyte && Equals((escapedTestspublic_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b1173c52d299b220.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b1173c52d299b220.verified.txt index ce82817f94..4e6686b80f 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b1173c52d299b220.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b1173c52d299b220.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonedouble && Equals((escapedTestspublic_readonly_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b5b124a9900bc123.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b5b124a9900bc123.verified.txt index 68e41274c3..c7dd6c1174 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b5b124a9900bc123.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b5b124a9900bc123.verified.txt @@ -316,7 +316,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonestring && Equals((escapedTestspublic_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b7d403c82ba63992.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b7d403c82ba63992.verified.txt index cd671f3648..d274774983 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b7d403c82ba63992.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_b7d403c82ba63992.verified.txt @@ -316,7 +316,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonestring && Equals((escapedTestspublic_readonly_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_c19b0d0af9db430d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_c19b0d0af9db430d.verified.txt index 494c4e4cdc..70bd1aa525 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_c19b0d0af9db430d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_c19b0d0af9db430d.verified.txt @@ -311,7 +311,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_c582a1bbca9b6853.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_c582a1bbca9b6853.verified.txt index bd0ec95c0d..9075ca5579 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_c582a1bbca9b6853.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_c582a1bbca9b6853.verified.txt @@ -318,7 +318,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_ce9a45e95087de82.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_ce9a45e95087de82.verified.txt index 00356f9458..87c5fbceec 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_ce9a45e95087de82.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_ce9a45e95087de82.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d1d290471740b346.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d1d290471740b346.verified.txt index e0ba25478a..162b4c1923 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d1d290471740b346.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d1d290471740b346.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d47765eafe36b769.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d47765eafe36b769.verified.txt index 2fa7d70ea7..7fb0ab6189 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d47765eafe36b769.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d47765eafe36b769.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d682d2491abae2f5.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d682d2491abae2f5.verified.txt index 16169e047a..482a7981e8 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d682d2491abae2f5.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_d682d2491abae2f5.verified.txt @@ -312,7 +312,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_eac1116bb9ee271b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_eac1116bb9ee271b.verified.txt index 244d09064a..a64d2b5701 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_eac1116bb9ee271b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_eac1116bb9ee271b.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_f61fd3251a43bf0f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_f61fd3251a43bf0f.verified.txt index 111e43b261..1dc27b0708 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_f61fd3251a43bf0f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedEfCoreConverters.GenerationOfEscapedTypes_f61fd3251a43bf0f.verified.txt @@ -313,7 +313,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt index 339fce74c8..2e9a370689 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_012c0d496b60f6df.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt index 59c987cb64..ef1f93bd1c 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_086f54775a77d9c5.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt index 180e879ffe..ec895c3c0d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_0f27b70b608a0813.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt index 2c66caeebb..99c6ae6450 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_11f642537451a3f2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt index 8e3756ab7c..ca1d67d843 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_17e586e069758af8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt index e9318aa2a7..8f32d30712 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1e91e8c2942c7621.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt index ff6387ba7b..b49200f611 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_1f83aefa399cd015.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonebyte && Equals((escapedTestspublic_readonly_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, escapedTestspublic_readonly_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt index 3f1713c19b..3cf6bebeed 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_215f86f24487bf49.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonedouble && Equals((escapedTestspublic_readonly_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, escapedTestspublic_readonly_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt index b7e3158ad8..d5be6a7a2f 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21796e4b913e08b1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt index b02f37e3b6..6023805965 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_219306b18cdc3e07.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt index 682a3d11d1..d4c8ec306b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_21ccea8ea676ba7b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt index 2045e2e1cc..c97583c92b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_25f52f8396f935b2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt index c8736d61db..0dc8e21cf3 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_2ac9bfa566939638.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt index a60ae20c8f..68a3a4e7e1 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_337027c1c944cfaf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt index fd47303db0..f8e834d474 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4255641ed8f4e268.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt index 66e8418bac..68cc6cd132 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_47cc23d343990594.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt index f6fbff97d6..be5d7cd764 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_4ddf1f2ae161e69c.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt index 55d0d9249e..3c50b1f3b7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_5f0c9d37eceef2c0.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt index f862099888..df0eb16e76 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_63c027478f9ff46d.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt index e1c362d140..6bb2915fd8 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_65ce7d766e117b08.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, escapedTestspublic_partial_structConversions_NewtonsoftJsonstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt index e3bed42479..f236239e79 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_66ddd4c66851da6d.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NoneSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt index 10445bd1dc..aa2f673f0b 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7181d3048cad76b6.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt index c5a333760c..e21cd14357 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_7e053543ca894fdd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt index 8f47ae3489..8e8577eecb 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_80317d4af944b808.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt index 13d7f94be0..0bc4e05f59 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_8897316c8d429b79.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt index a7fc6093df..1e1024e2f3 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_98edb6277d4f5e19.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt index ab05f4ef99..85a5798b41 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_9cbdc12cda7e2ae1.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__event left, @class.@record.@struct.@float.@event right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt index 8cb8aa945e..bc33c84da2 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a3dd275f02ad3651.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt index bc2144bb62..4774962d36 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a4ef8570e0f14f86.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonestring && Equals((escapedTestspublic_readonly_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, escapedTestspublic_readonly_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt index f3bcf9591e..cd87ea0fc5 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_a8460e15a376fa02.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonedouble && Equals((escapedTestspublic_partial_structConversions_Nonedouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, escapedTestspublic_partial_structConversions_Nonedouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonedouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt index 27a3bcd832..4356a3d648 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_aad193ec46dde4d6.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt index 15618f8a0a..9b2240cc46 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c2178ebb808ae963.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt index 7469751207..2d6dd64b02 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_c82fa4330d467b8b.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt index 0eacdd2e55..6c1cd44a71 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbcdc0b8869553e1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterrecord__struct__float__event2 left, @class.@record.@struct.@float.event2 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt index bedac9baab..6ae2245d3d 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cbf34ccd53d4837a.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt index d26264ace9..d2704366fc 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_cddff7aa83ae574f.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt index 0bef3a39dd..2b587dca51 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_ce405c0d5085ccf9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt index d815f22606..78ac862089 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e40b82ac9e007e36.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt index 091d802ac7..6d2b1d0118 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e46631ad24d1940f.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal && Equals((escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_NewtonsoftJsonrecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt index 17640834a7..4a602ab671 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_e4fc646179909d98.verified.txt @@ -197,7 +197,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonestring && Equals((escapedTestspublic_partial_structConversions_Nonestring)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, escapedTestspublic_partial_structConversions_Nonestring right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonestring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt index 1d942ddac7..d2fc4f7690 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_f5760ac41d179c1a.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_partial_structConversions_Nonebyte && Equals((escapedTestspublic_partial_structConversions_Nonebyte)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, escapedTestspublic_partial_structConversions_Nonebyte right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_partial_structConversions_Nonebyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt index 4cb20c0e8e..8fa231ccf7 100644 --- a/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt +++ b/tests/SnapshotTests/Escaping/snapshots/snap-v8.0/GenerationOfEscapedTypesTests.GenerationOfEscapedTypes_fc777ef0984ea111.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal && Equals((escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal)obj); } - public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => Equals(left, right); + public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => left.Equals(right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal right) => !(left == right); public static global::System.Boolean operator ==(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(escapedTestspublic_readonly_partial_structConversions_Nonerecord__struct__float__decimal left, @class.@record.@struct.@float.@decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/0Rjlo8wVsY.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/0Rjlo8wVsY.verified.txt index 5733ffb6c5..33ac619a11 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/0Rjlo8wVsY.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/0Rjlo8wVsY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.EFCore_generated_stuff.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.EFCore_generated_stuff.verified.txt index 397f2ad1bb..51f53b42ad 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.EFCore_generated_stuff.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.EFCore_generated_stuff.verified.txt @@ -195,7 +195,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt index be43833073..7bcde81c4b 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt index 2530013a05..666e59d1df 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt index 7d851cd080..a593fc2e7e 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt @@ -236,7 +236,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is @class && Equals((@class)obj); } - public static global::System.Boolean operator ==(@class left, @class right) => Equals(left, right); + public static global::System.Boolean operator ==(@class left, @class right) => left.Equals(right); public static global::System.Boolean operator !=(@class left, @class right) => !(left == right); public static global::System.Boolean operator ==(@class left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(@class left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.No_namespace.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.No_namespace.verified.txt index e2c4c3f775..19a8997d58 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.No_namespace.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.No_namespace.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Partial_struct_created_successfully.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Partial_struct_created_successfully.verified.txt index c58044fcf5..1fd5f79838 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Partial_struct_created_successfully.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Partial_struct_created_successfully.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Produces_instances.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Produces_instances.verified.txt index fa8ebe4400..329f6731df 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Produces_instances.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Produces_instances.verified.txt @@ -204,7 +204,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt index 5d00acba79..f7f9ed9558 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt index 8eb5ed61a2..73dd12f0f7 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_with_camelCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_with_camelCased_validate_method.verified.txt index 5d00acba79..f7f9ed9558 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_with_camelCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v3.1/GeneralTests.Validation_with_camelCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/0Rjlo8wVsY.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/0Rjlo8wVsY.verified.txt index 13cda30d87..13d066f40f 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/0Rjlo8wVsY.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/0Rjlo8wVsY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.EFCore_generated_stuff.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.EFCore_generated_stuff.verified.txt index 397f2ad1bb..51f53b42ad 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.EFCore_generated_stuff.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.EFCore_generated_stuff.verified.txt @@ -195,7 +195,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt index 1da2198605..17826c0b88 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt index bc0223d7cc..a276dbc655 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt index d4fc49227c..f9634c50db 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt index d4fc49227c..f9634c50db 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt index 01b55b889e..5b5a5949b0 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt @@ -236,7 +236,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is @class && Equals((@class)obj); } - public static global::System.Boolean operator ==(@class left, @class right) => Equals(left, right); + public static global::System.Boolean operator ==(@class left, @class right) => left.Equals(right); public static global::System.Boolean operator !=(@class left, @class right) => !(left == right); public static global::System.Boolean operator ==(@class left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(@class left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.No_namespace.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.No_namespace.verified.txt index 0845f307f6..f5849ae7aa 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.No_namespace.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.No_namespace.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Partial_struct_created_successfully.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Partial_struct_created_successfully.verified.txt index e46d0506a8..23cadbea5b 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Partial_struct_created_successfully.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Partial_struct_created_successfully.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Produces_instances.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Produces_instances.verified.txt index 24fcb916e7..e580c6b41b 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Produces_instances.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Produces_instances.verified.txt @@ -204,7 +204,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt index b3e63cfd7d..784d882388 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt index 7dd85e9967..8ed886182a 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_with_camelCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_with_camelCased_validate_method.verified.txt index b3e63cfd7d..784d882388 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_with_camelCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.6.1/GeneralTests.Validation_with_camelCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/0Rjlo8wVsY.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/0Rjlo8wVsY.verified.txt index 13cda30d87..13d066f40f 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/0Rjlo8wVsY.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/0Rjlo8wVsY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.EFCore_generated_stuff.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.EFCore_generated_stuff.verified.txt index 397f2ad1bb..51f53b42ad 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.EFCore_generated_stuff.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.EFCore_generated_stuff.verified.txt @@ -195,7 +195,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt index 69a3ab59fe..b9cbe09020 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt index 08383f76ea..9196de1e6e 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt index d2f786a1a3..345e0eaea9 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt index d2f786a1a3..345e0eaea9 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt index ac04c56cfb..9960b96300 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt @@ -236,7 +236,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is @class && Equals((@class)obj); } - public static global::System.Boolean operator ==(@class left, @class right) => Equals(left, right); + public static global::System.Boolean operator ==(@class left, @class right) => left.Equals(right); public static global::System.Boolean operator !=(@class left, @class right) => !(left == right); public static global::System.Boolean operator ==(@class left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(@class left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.No_namespace.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.No_namespace.verified.txt index 3bfae01f7b..2b6b13b9c8 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.No_namespace.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.No_namespace.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Partial_struct_created_successfully.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Partial_struct_created_successfully.verified.txt index 91dc3cb5b2..c20dfa42e9 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Partial_struct_created_successfully.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Partial_struct_created_successfully.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Produces_instances.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Produces_instances.verified.txt index 507ed47b26..2c7d153804 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Produces_instances.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Produces_instances.verified.txt @@ -204,7 +204,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt index 09c1a39336..fa482f08b2 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt index 73c5252f28..fe928ff194 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_with_camelCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_with_camelCased_validate_method.verified.txt index 09c1a39336..fa482f08b2 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_with_camelCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v4.8/GeneralTests.Validation_with_camelCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/0Rjlo8wVsY.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/0Rjlo8wVsY.verified.txt index 5733ffb6c5..33ac619a11 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/0Rjlo8wVsY.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/0Rjlo8wVsY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.EFCore_generated_stuff.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.EFCore_generated_stuff.verified.txt index 397f2ad1bb..51f53b42ad 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.EFCore_generated_stuff.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.EFCore_generated_stuff.verified.txt @@ -195,7 +195,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt index be43833073..7bcde81c4b 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt index 2530013a05..666e59d1df 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt index 7d851cd080..a593fc2e7e 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt @@ -236,7 +236,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is @class && Equals((@class)obj); } - public static global::System.Boolean operator ==(@class left, @class right) => Equals(left, right); + public static global::System.Boolean operator ==(@class left, @class right) => left.Equals(right); public static global::System.Boolean operator !=(@class left, @class right) => !(left == right); public static global::System.Boolean operator ==(@class left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(@class left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.No_namespace.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.No_namespace.verified.txt index e2c4c3f775..19a8997d58 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.No_namespace.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.No_namespace.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Partial_struct_created_successfully.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Partial_struct_created_successfully.verified.txt index c58044fcf5..1fd5f79838 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Partial_struct_created_successfully.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Partial_struct_created_successfully.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Produces_instances.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Produces_instances.verified.txt index fa8ebe4400..329f6731df 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Produces_instances.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Produces_instances.verified.txt @@ -204,7 +204,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt index 5d00acba79..f7f9ed9558 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt index 8eb5ed61a2..73dd12f0f7 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt index 5d00acba79..f7f9ed9558 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v5.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/0Rjlo8wVsY.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/0Rjlo8wVsY.verified.txt index 5733ffb6c5..33ac619a11 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/0Rjlo8wVsY.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/0Rjlo8wVsY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.EFCore_generated_stuff.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.EFCore_generated_stuff.verified.txt index 397f2ad1bb..51f53b42ad 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.EFCore_generated_stuff.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.EFCore_generated_stuff.verified.txt @@ -195,7 +195,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt index be43833073..7bcde81c4b 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt index 2530013a05..666e59d1df 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt index 7d851cd080..a593fc2e7e 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt @@ -236,7 +236,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is @class && Equals((@class)obj); } - public static global::System.Boolean operator ==(@class left, @class right) => Equals(left, right); + public static global::System.Boolean operator ==(@class left, @class right) => left.Equals(right); public static global::System.Boolean operator !=(@class left, @class right) => !(left == right); public static global::System.Boolean operator ==(@class left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(@class left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.No_namespace.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.No_namespace.verified.txt index e2c4c3f775..19a8997d58 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.No_namespace.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.No_namespace.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Partial_struct_created_successfully.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Partial_struct_created_successfully.verified.txt index c58044fcf5..1fd5f79838 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Partial_struct_created_successfully.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Partial_struct_created_successfully.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Produces_instances.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Produces_instances.verified.txt index fa8ebe4400..329f6731df 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Produces_instances.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Produces_instances.verified.txt @@ -204,7 +204,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt index 5d00acba79..f7f9ed9558 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt index 8eb5ed61a2..73dd12f0f7 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt index 5d00acba79..f7f9ed9558 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v6.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/0Rjlo8wVsY.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/0Rjlo8wVsY.verified.txt index 6b03f24edc..efea93c276 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/0Rjlo8wVsY.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/0Rjlo8wVsY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.EFCore_generated_stuff.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.EFCore_generated_stuff.verified.txt index 9c2bcedcff..a89da10386 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.EFCore_generated_stuff.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.EFCore_generated_stuff.verified.txt @@ -195,7 +195,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt index a1621ce056..22c22450c5 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt index 464a72738a..86f90ff0b3 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt index 31fe0a7aeb..c2d8cf491b 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt index 31fe0a7aeb..c2d8cf491b 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt index dc709bd9ad..11cfef4f2d 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt @@ -236,7 +236,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is @class && Equals((@class)obj); } - public static global::System.Boolean operator ==(@class left, @class right) => Equals(left, right); + public static global::System.Boolean operator ==(@class left, @class right) => left.Equals(right); public static global::System.Boolean operator !=(@class left, @class right) => !(left == right); public static global::System.Boolean operator ==(@class left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(@class left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.No_namespace.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.No_namespace.verified.txt index b559d7d343..b24718ff68 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.No_namespace.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.No_namespace.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Partial_struct_created_successfully.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Partial_struct_created_successfully.verified.txt index 817bdc32b2..13f4481720 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Partial_struct_created_successfully.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Partial_struct_created_successfully.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Produces_instances.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Produces_instances.verified.txt index d77198df4f..107ef4ae2c 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Produces_instances.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Produces_instances.verified.txt @@ -204,7 +204,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt index 544bc2d512..87712cf46c 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt index e8c0d7d2bd..37800c883c 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt index 544bc2d512..87712cf46c 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v7.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/0Rjlo8wVsY.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/0Rjlo8wVsY.verified.txt index 6b03f24edc..efea93c276 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/0Rjlo8wVsY.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/0Rjlo8wVsY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Can_use_derived_ValueObjectAttribute.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Can_use_derived_ValueObjectAttribute.verified.txt index f38dbba2a6..34aa69acdd 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Can_use_derived_ValueObjectAttribute.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Can_use_derived_ValueObjectAttribute.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.EFCore_generated_stuff.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.EFCore_generated_stuff.verified.txt index 9c2bcedcff..a89da10386 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.EFCore_generated_stuff.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.EFCore_generated_stuff.verified.txt @@ -195,7 +195,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt index 10219902bd..2a1c55316b 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_1.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt index 582a6f5090..a4ac04d8eb 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_2.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt index 84e6a4d688..39ef2961d4 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt index 84e6a4d688..39ef2961d4 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_4.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_5.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_5.verified.txt index 5b7fbbfeb0..598ab1b828 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_5.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_IParsable_and_skip_user_provided_method_5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_SystemTextJson_factory.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_SystemTextJson_factory.verified.txt index e6b6e98e82..da7ca87f7d 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_SystemTextJson_factory.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Generates_SystemTextJson_factory.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass1 && Equals((MyClass1)obj); } - public static global::System.Boolean operator ==(MyClass1 left, MyClass1 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass1 left, MyClass1 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass1 left, MyClass1 right) => !(left == right); public static global::System.Boolean operator ==(MyClass1 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass1 left, System.Int32 right) => !Equals(left.Value, right); @@ -780,7 +780,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt index 45b9666299..956285a733 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt index e4e07c0804..697c1df2b7 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Namespace_names_can_have_reserved_keywords.verified.txt @@ -236,7 +236,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is @class && Equals((@class)obj); } - public static global::System.Boolean operator ==(@class left, @class right) => Equals(left, right); + public static global::System.Boolean operator ==(@class left, @class right) => left.Equals(right); public static global::System.Boolean operator !=(@class left, @class right) => !(left == right); public static global::System.Boolean operator ==(@class left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(@class left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.No_namespace.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.No_namespace.verified.txt index b2cca3035f..77c387e373 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.No_namespace.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.No_namespace.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Partial_struct_created_successfully.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Partial_struct_created_successfully.verified.txt index 1fc8d701f7..fbc8b01639 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Partial_struct_created_successfully.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Partial_struct_created_successfully.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Produces_instances.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Produces_instances.verified.txt index 138f5f9e0d..d5c6ff6bcc 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Produces_instances.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Produces_instances.verified.txt @@ -204,7 +204,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_date_time.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_date_time.verified.txt index 43007e6067..ee13e81d93 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_date_time.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_date_time.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_non_strings.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_non_strings.verified.txt index d73a72ef6f..3b0dc2fd3c 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_non_strings.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_non_strings.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_strings.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_strings.verified.txt index 4a66fcb204..360997b54b 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_strings.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_strings.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_time_related_primitives.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_time_related_primitives.verified.txt index 9dc4dc05c8..06fa2e5f0a 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_time_related_primitives.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.ServiceStackDotTextConversion_generates_static_constructor_for_time_related_primitives.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.TimeOnly right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.TimeOnly right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt index 0c4ebd4a85..92c6f84088 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_can_have_fully_qualified_return_type.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt index adf4d32335..06d9f03566 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_with_PascalCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt index 0c4ebd4a85..92c6f84088 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v8.0/GeneralTests.Validation_with_camelCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/1h0XbQEjc6.verified.txt index 4d3ea86732..05c60f6794 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/2GQW6JDMp3.verified.txt index 2922325d51..c4ca486396 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/2h4RxJmd8y.verified.txt index 4f71175e82..96fbbbc2b1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3HolOeXE6X.verified.txt index ab8ee9f7b9..1bbf40b21e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3mBWDp16rd.verified.txt index d44be652e6..a94d933dd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3oAabmt2UZ.verified.txt index 0cad2111b2..03094ed32c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/4qxtVFqAJk.verified.txt index 62b8e5ba56..d9e81c2643 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/6HeO7LLgVh.verified.txt index 8e264530ba..d245a688f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/6xsKtx6pBG.verified.txt index 3e92aa3428..78ed0588da 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/8243ZMXNu5.verified.txt index cfe821edfb..788644fe99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/90qAmH8XZh.verified.txt index ad0b6c5b8d..c3d776ee1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/A3LDARdFrZ.verified.txt index f24842152c..f2c728fc6c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/AGUOBcbY4A.verified.txt index c6b6505c36..96de05436a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/BCDkkorwLD.verified.txt index 40dbac64db..6845747647 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/BU0UUvzzuK.verified.txt index bd8998571b..432eca5e49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/GbsChMfTbx.verified.txt index 22fa177c99..a261be03bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/HyJgcfbHDZ.verified.txt index 1f1c273280..0bcc02b95c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/NA3ZnOKVDG.verified.txt index 467c839cd1..205de8fbad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/QXgcj72buY.verified.txt index f1ffe49af2..ae0318b756 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/R1tSxHqFWR.verified.txt index 85650e43f7..b9ad176779 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/RSvHJzWcVx.verified.txt index 99cca848c5..76b8aca884 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/Thad6nEDD5.verified.txt index 9dc70b96a5..1d8e789af4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/TxGznMqzl8.verified.txt index 98024b5eac..752158180a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/Uhx1npmK9K.verified.txt index e74e694951..231bd9de0f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/WMVLzBfTuM.verified.txt index f5259705c7..59138c76dd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YLETiC8egS.verified.txt index e469103a37..9ac14e67f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YQ4C8lGTTp.verified.txt index 67b9da422e..4dd357f9ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YmajZMirSq.verified.txt index 8dda93c7d7..ed7ae0ec0d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/a5oBj4NMck.verified.txt index b4d3a902a0..f74af52d08 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/bXddhCA2bk.verified.txt index a618103f22..4c4049bc40 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/f8GfgtBpEy.verified.txt index d04566f890..3a58d25403 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/fBsIsd9NEC.verified.txt index d432f595bf..672ca094be 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ga0wMsAonO.verified.txt index 4d6a7bad33..8efba52f9d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/hjyaHa29Jz.verified.txt index b208b55f69..d2d060382a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/iHYaBR6vwE.verified.txt index 596260d05e..dbb99e9767 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/k1zq0pGwsL.verified.txt index b84c316f45..b9eca88c57 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/nweFjpXFsL.verified.txt index 8bb294b674..97fa36514b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/oQTi0amgPS.verified.txt index a9a9f4a670..b32dc1ccd5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ono9JkTnAN.verified.txt index 5e5763d536..5cfeea4ecc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/puxvvYTSLO.verified.txt index c932be6ed5..8bdbef7858 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/rjKVwCkFkr.verified.txt index 7d85eccf3e..da7380de48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/uKnQqNmYCb.verified.txt index ae5160054e..4e60e64c97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/uKxa9dnwxN.verified.txt index 267d0fe767..a56a4188fc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/xrqw8zdbit.verified.txt index 89bc2b783b..cd9c052328 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-fr/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/1h0XbQEjc6.verified.txt index 4d3ea86732..05c60f6794 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/2GQW6JDMp3.verified.txt index 2922325d51..c4ca486396 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/2h4RxJmd8y.verified.txt index 4f71175e82..96fbbbc2b1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3HolOeXE6X.verified.txt index ab8ee9f7b9..1bbf40b21e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3mBWDp16rd.verified.txt index d44be652e6..a94d933dd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3oAabmt2UZ.verified.txt index 0cad2111b2..03094ed32c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/4qxtVFqAJk.verified.txt index 62b8e5ba56..d9e81c2643 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/6HeO7LLgVh.verified.txt index 8e264530ba..d245a688f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/6xsKtx6pBG.verified.txt index 3e92aa3428..78ed0588da 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/8243ZMXNu5.verified.txt index cfe821edfb..788644fe99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/90qAmH8XZh.verified.txt index ad0b6c5b8d..c3d776ee1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/A3LDARdFrZ.verified.txt index f24842152c..f2c728fc6c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/AGUOBcbY4A.verified.txt index c6b6505c36..96de05436a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/BCDkkorwLD.verified.txt index 40dbac64db..6845747647 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/BU0UUvzzuK.verified.txt index bd8998571b..432eca5e49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/GbsChMfTbx.verified.txt index 22fa177c99..a261be03bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/HyJgcfbHDZ.verified.txt index 1f1c273280..0bcc02b95c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/NA3ZnOKVDG.verified.txt index 467c839cd1..205de8fbad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/QXgcj72buY.verified.txt index f1ffe49af2..ae0318b756 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/R1tSxHqFWR.verified.txt index 85650e43f7..b9ad176779 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/RSvHJzWcVx.verified.txt index 99cca848c5..76b8aca884 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/Thad6nEDD5.verified.txt index 9dc70b96a5..1d8e789af4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/TxGznMqzl8.verified.txt index 98024b5eac..752158180a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/Uhx1npmK9K.verified.txt index e74e694951..231bd9de0f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/WMVLzBfTuM.verified.txt index f5259705c7..59138c76dd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YLETiC8egS.verified.txt index e469103a37..9ac14e67f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YQ4C8lGTTp.verified.txt index 67b9da422e..4dd357f9ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YmajZMirSq.verified.txt index 8dda93c7d7..ed7ae0ec0d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/a5oBj4NMck.verified.txt index b4d3a902a0..f74af52d08 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/bXddhCA2bk.verified.txt index a618103f22..4c4049bc40 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/f8GfgtBpEy.verified.txt index d04566f890..3a58d25403 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/fBsIsd9NEC.verified.txt index d432f595bf..672ca094be 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ga0wMsAonO.verified.txt index 4d6a7bad33..8efba52f9d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/hjyaHa29Jz.verified.txt index b208b55f69..d2d060382a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/iHYaBR6vwE.verified.txt index 596260d05e..dbb99e9767 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/k1zq0pGwsL.verified.txt index b84c316f45..b9eca88c57 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/nweFjpXFsL.verified.txt index 8bb294b674..97fa36514b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/oQTi0amgPS.verified.txt index a9a9f4a670..b32dc1ccd5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ono9JkTnAN.verified.txt index 5e5763d536..5cfeea4ecc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/puxvvYTSLO.verified.txt index c932be6ed5..8bdbef7858 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/rjKVwCkFkr.verified.txt index 7d85eccf3e..da7380de48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/uKnQqNmYCb.verified.txt index ae5160054e..4e60e64c97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/uKxa9dnwxN.verified.txt index 267d0fe767..a56a4188fc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/xrqw8zdbit.verified.txt index 89bc2b783b..cd9c052328 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1-us/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/1h0XbQEjc6.verified.txt index 4d3ea86732..05c60f6794 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/2GQW6JDMp3.verified.txt index 2922325d51..c4ca486396 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/2h4RxJmd8y.verified.txt index 4f71175e82..96fbbbc2b1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3HolOeXE6X.verified.txt index ab8ee9f7b9..1bbf40b21e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3mBWDp16rd.verified.txt index d44be652e6..a94d933dd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3oAabmt2UZ.verified.txt index 0cad2111b2..03094ed32c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/4qxtVFqAJk.verified.txt index 62b8e5ba56..d9e81c2643 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/6HeO7LLgVh.verified.txt index 8e264530ba..d245a688f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/6xsKtx6pBG.verified.txt index 3e92aa3428..78ed0588da 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/8243ZMXNu5.verified.txt index cfe821edfb..788644fe99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/90qAmH8XZh.verified.txt index ad0b6c5b8d..c3d776ee1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/A3LDARdFrZ.verified.txt index f24842152c..f2c728fc6c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/AGUOBcbY4A.verified.txt index c6b6505c36..96de05436a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/BCDkkorwLD.verified.txt index 40dbac64db..6845747647 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/BU0UUvzzuK.verified.txt index bd8998571b..432eca5e49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/GbsChMfTbx.verified.txt index 22fa177c99..a261be03bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/HyJgcfbHDZ.verified.txt index 1f1c273280..0bcc02b95c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/NA3ZnOKVDG.verified.txt index 467c839cd1..205de8fbad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/QXgcj72buY.verified.txt index f1ffe49af2..ae0318b756 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/R1tSxHqFWR.verified.txt index 85650e43f7..b9ad176779 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/RSvHJzWcVx.verified.txt index 99cca848c5..76b8aca884 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/Thad6nEDD5.verified.txt index 9dc70b96a5..1d8e789af4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/TxGznMqzl8.verified.txt index 98024b5eac..752158180a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/Uhx1npmK9K.verified.txt index e74e694951..231bd9de0f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/WMVLzBfTuM.verified.txt index f5259705c7..59138c76dd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YLETiC8egS.verified.txt index e469103a37..9ac14e67f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YQ4C8lGTTp.verified.txt index 67b9da422e..4dd357f9ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YmajZMirSq.verified.txt index 8dda93c7d7..ed7ae0ec0d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/a5oBj4NMck.verified.txt index b4d3a902a0..f74af52d08 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/bXddhCA2bk.verified.txt index a618103f22..4c4049bc40 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/f8GfgtBpEy.verified.txt index d04566f890..3a58d25403 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/fBsIsd9NEC.verified.txt index d432f595bf..672ca094be 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ga0wMsAonO.verified.txt index 4d6a7bad33..8efba52f9d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/hjyaHa29Jz.verified.txt index b208b55f69..d2d060382a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/iHYaBR6vwE.verified.txt index 596260d05e..dbb99e9767 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/k1zq0pGwsL.verified.txt index b84c316f45..b9eca88c57 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/nweFjpXFsL.verified.txt index 8bb294b674..97fa36514b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/oQTi0amgPS.verified.txt index a9a9f4a670..b32dc1ccd5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ono9JkTnAN.verified.txt index 5e5763d536..5cfeea4ecc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/puxvvYTSLO.verified.txt index c932be6ed5..8bdbef7858 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/rjKVwCkFkr.verified.txt index 7d85eccf3e..da7380de48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/uKnQqNmYCb.verified.txt index ae5160054e..4e60e64c97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/uKxa9dnwxN.verified.txt index 267d0fe767..a56a4188fc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/xrqw8zdbit.verified.txt index 89bc2b783b..cd9c052328 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v3.1/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/1h0XbQEjc6.verified.txt index 20e0a4bb7d..93b922ab3b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/2GQW6JDMp3.verified.txt index b814e8e096..f95be5ad14 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/2h4RxJmd8y.verified.txt index 4c1200538a..33e751d61c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3HolOeXE6X.verified.txt index 390cc9b1dc..6892b4aec7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3mBWDp16rd.verified.txt index 176f333a74..4e8be9fe9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3oAabmt2UZ.verified.txt index 0f113be23f..53b1a83ff9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/4qxtVFqAJk.verified.txt index de86c0798c..b3f459d55f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/6HeO7LLgVh.verified.txt index 164ad00c89..1f760a44c7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/6xsKtx6pBG.verified.txt index 7b4d4fcf53..914679e546 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/8243ZMXNu5.verified.txt index bffd2116ae..d95bbbefee 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/90qAmH8XZh.verified.txt index 10cdd29ba0..a617d9bfd6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/9tI1cnGakf.verified.txt index f0ae10fbad..25015dc261 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/A3LDARdFrZ.verified.txt index 12de67d940..28bbe5f14e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/AGUOBcbY4A.verified.txt index 0288f47ada..be1843e606 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/BCDkkorwLD.verified.txt index 8951dd0148..f9c6f76b3d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/BU0UUvzzuK.verified.txt index f284f59473..2ea1ff2199 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/GAiFkQgtr9.verified.txt index 34a7d196d0..03f4bf8d3f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/GbsChMfTbx.verified.txt index a106bbb509..cf67c0468b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/HyJgcfbHDZ.verified.txt index 6331d3252a..e82c26e0cc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/NA3ZnOKVDG.verified.txt index 8aa64dae25..8a7475f099 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/QXgcj72buY.verified.txt index 9ec3470c16..4b069e3635 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/R1tSxHqFWR.verified.txt index 6009c1ee07..d2f382a2db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/RSvHJzWcVx.verified.txt index 2e07720ed1..da6bef6552 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/Thad6nEDD5.verified.txt index 5f07839a3e..e3b70b8745 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/TxGznMqzl8.verified.txt index f224448f01..2905d252d2 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/Uhx1npmK9K.verified.txt index c6b644361e..234ea96030 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/WMVLzBfTuM.verified.txt index ab6bfab6d1..f2a11d27f0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YLETiC8egS.verified.txt index d407ed4289..6ff17b21c0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YQ4C8lGTTp.verified.txt index 3e317f7044..42a5caabd2 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YmajZMirSq.verified.txt index 37817e40ff..c0cd642e50 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/a5oBj4NMck.verified.txt index c577075b34..a783d3addf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/bXddhCA2bk.verified.txt index e7f7c2cecf..2dda590a43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ezHOpJ7fUj.verified.txt index fcad1f03f4..8232e903e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/f8GfgtBpEy.verified.txt index 9eae1261be..a9493b8fd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/fBsIsd9NEC.verified.txt index 4aab2c1821..3975037312 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ftvGXa4dWE.verified.txt index 4566bd907d..fc0940634b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ga0wMsAonO.verified.txt index ca5e5453b1..10215e1e1c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/hjyaHa29Jz.verified.txt index d47418b39d..f2a24b6360 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/iHYaBR6vwE.verified.txt index 906e0f5835..c980008569 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/k1zq0pGwsL.verified.txt index 4d7038c2da..c1f58d8a31 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/l4e6XelAgq.verified.txt index a604398332..4aa4760af9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/nweFjpXFsL.verified.txt index f82d1fd402..3694d6f2e7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/oQTi0amgPS.verified.txt index 56a3bc73ee..a9eb6f2322 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ono9JkTnAN.verified.txt index 9c8ffbaa5c..c85931415b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/pZUfYns8zh.verified.txt index 2da7ebe106..90db6d618e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/puxvvYTSLO.verified.txt index 418cbb5fc5..721bab5db7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/rjKVwCkFkr.verified.txt index ba08ef9421..1dcb770dec 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/s7fJpcky7C.verified.txt index bdaf6fdaad..a0a1f4aacc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/u8OrI8K7dy.verified.txt index 3945503654..ebca710008 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/uKnQqNmYCb.verified.txt index 894f69f767..ef37f81027 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/uKxa9dnwxN.verified.txt index 7236e76935..d61d9bd267 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/xrqw8zdbit.verified.txt index 4616febaff..75f970d3d1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-fr/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/1h0XbQEjc6.verified.txt index 20e0a4bb7d..93b922ab3b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/2GQW6JDMp3.verified.txt index b814e8e096..f95be5ad14 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/2h4RxJmd8y.verified.txt index 4c1200538a..33e751d61c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3HolOeXE6X.verified.txt index 390cc9b1dc..6892b4aec7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3mBWDp16rd.verified.txt index 176f333a74..4e8be9fe9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3oAabmt2UZ.verified.txt index 0f113be23f..53b1a83ff9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/4qxtVFqAJk.verified.txt index de86c0798c..b3f459d55f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/6HeO7LLgVh.verified.txt index 164ad00c89..1f760a44c7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/6xsKtx6pBG.verified.txt index 7b4d4fcf53..914679e546 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/8243ZMXNu5.verified.txt index bffd2116ae..d95bbbefee 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/90qAmH8XZh.verified.txt index 10cdd29ba0..a617d9bfd6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/9tI1cnGakf.verified.txt index f0ae10fbad..25015dc261 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/A3LDARdFrZ.verified.txt index 12de67d940..28bbe5f14e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/AGUOBcbY4A.verified.txt index 0288f47ada..be1843e606 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/BCDkkorwLD.verified.txt index 8951dd0148..f9c6f76b3d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/BU0UUvzzuK.verified.txt index f284f59473..2ea1ff2199 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/GAiFkQgtr9.verified.txt index 34a7d196d0..03f4bf8d3f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/GbsChMfTbx.verified.txt index a106bbb509..cf67c0468b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/HyJgcfbHDZ.verified.txt index 6331d3252a..e82c26e0cc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/NA3ZnOKVDG.verified.txt index 8aa64dae25..8a7475f099 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/QXgcj72buY.verified.txt index 9ec3470c16..4b069e3635 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/R1tSxHqFWR.verified.txt index 6009c1ee07..d2f382a2db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/RSvHJzWcVx.verified.txt index 2e07720ed1..da6bef6552 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/Thad6nEDD5.verified.txt index 5f07839a3e..e3b70b8745 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/TxGznMqzl8.verified.txt index f224448f01..2905d252d2 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/Uhx1npmK9K.verified.txt index c6b644361e..234ea96030 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/WMVLzBfTuM.verified.txt index ab6bfab6d1..f2a11d27f0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YLETiC8egS.verified.txt index d407ed4289..6ff17b21c0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YQ4C8lGTTp.verified.txt index 3e317f7044..42a5caabd2 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YmajZMirSq.verified.txt index 37817e40ff..c0cd642e50 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/a5oBj4NMck.verified.txt index c577075b34..a783d3addf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/bXddhCA2bk.verified.txt index e7f7c2cecf..2dda590a43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ezHOpJ7fUj.verified.txt index fcad1f03f4..8232e903e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/f8GfgtBpEy.verified.txt index 9eae1261be..a9493b8fd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/fBsIsd9NEC.verified.txt index 4aab2c1821..3975037312 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ftvGXa4dWE.verified.txt index 4566bd907d..fc0940634b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ga0wMsAonO.verified.txt index ca5e5453b1..10215e1e1c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/hjyaHa29Jz.verified.txt index d47418b39d..f2a24b6360 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/iHYaBR6vwE.verified.txt index 906e0f5835..c980008569 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/k1zq0pGwsL.verified.txt index 4d7038c2da..c1f58d8a31 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/l4e6XelAgq.verified.txt index a604398332..4aa4760af9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/nweFjpXFsL.verified.txt index f82d1fd402..3694d6f2e7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/oQTi0amgPS.verified.txt index 56a3bc73ee..a9eb6f2322 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ono9JkTnAN.verified.txt index 9c8ffbaa5c..c85931415b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/pZUfYns8zh.verified.txt index 2da7ebe106..90db6d618e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/puxvvYTSLO.verified.txt index 418cbb5fc5..721bab5db7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/rjKVwCkFkr.verified.txt index ba08ef9421..1dcb770dec 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/s7fJpcky7C.verified.txt index bdaf6fdaad..a0a1f4aacc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/u8OrI8K7dy.verified.txt index 3945503654..ebca710008 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/uKnQqNmYCb.verified.txt index 894f69f767..ef37f81027 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/uKxa9dnwxN.verified.txt index 7236e76935..d61d9bd267 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/xrqw8zdbit.verified.txt index 4616febaff..75f970d3d1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1-us/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/1h0XbQEjc6.verified.txt index 20e0a4bb7d..93b922ab3b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/2GQW6JDMp3.verified.txt index b814e8e096..f95be5ad14 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/2h4RxJmd8y.verified.txt index 4c1200538a..33e751d61c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3HolOeXE6X.verified.txt index 390cc9b1dc..6892b4aec7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3mBWDp16rd.verified.txt index 176f333a74..4e8be9fe9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3oAabmt2UZ.verified.txt index 0f113be23f..53b1a83ff9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/4qxtVFqAJk.verified.txt index de86c0798c..b3f459d55f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/6HeO7LLgVh.verified.txt index 164ad00c89..1f760a44c7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/6xsKtx6pBG.verified.txt index 7b4d4fcf53..914679e546 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/8243ZMXNu5.verified.txt index bffd2116ae..d95bbbefee 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/90qAmH8XZh.verified.txt index 10cdd29ba0..a617d9bfd6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/9tI1cnGakf.verified.txt index f0ae10fbad..25015dc261 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/A3LDARdFrZ.verified.txt index 12de67d940..28bbe5f14e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/AGUOBcbY4A.verified.txt index 0288f47ada..be1843e606 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/BCDkkorwLD.verified.txt index 8951dd0148..f9c6f76b3d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/BU0UUvzzuK.verified.txt index f284f59473..2ea1ff2199 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/GAiFkQgtr9.verified.txt index 34a7d196d0..03f4bf8d3f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/GbsChMfTbx.verified.txt index a106bbb509..cf67c0468b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/HyJgcfbHDZ.verified.txt index 6331d3252a..e82c26e0cc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/NA3ZnOKVDG.verified.txt index 8aa64dae25..8a7475f099 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/QXgcj72buY.verified.txt index 9ec3470c16..4b069e3635 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/R1tSxHqFWR.verified.txt index 6009c1ee07..d2f382a2db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/RSvHJzWcVx.verified.txt index 2e07720ed1..da6bef6552 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/Thad6nEDD5.verified.txt index 5f07839a3e..e3b70b8745 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/TxGznMqzl8.verified.txt index f224448f01..2905d252d2 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/Uhx1npmK9K.verified.txt index c6b644361e..234ea96030 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/WMVLzBfTuM.verified.txt index ab6bfab6d1..f2a11d27f0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YLETiC8egS.verified.txt index d407ed4289..6ff17b21c0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YQ4C8lGTTp.verified.txt index 3e317f7044..42a5caabd2 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YmajZMirSq.verified.txt index 37817e40ff..c0cd642e50 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/a5oBj4NMck.verified.txt index c577075b34..a783d3addf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/bXddhCA2bk.verified.txt index e7f7c2cecf..2dda590a43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ezHOpJ7fUj.verified.txt index fcad1f03f4..8232e903e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/f8GfgtBpEy.verified.txt index 9eae1261be..a9493b8fd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/fBsIsd9NEC.verified.txt index 4aab2c1821..3975037312 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ftvGXa4dWE.verified.txt index 4566bd907d..fc0940634b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ga0wMsAonO.verified.txt index ca5e5453b1..10215e1e1c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/hjyaHa29Jz.verified.txt index d47418b39d..f2a24b6360 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/iHYaBR6vwE.verified.txt index 906e0f5835..c980008569 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/k1zq0pGwsL.verified.txt index 4d7038c2da..c1f58d8a31 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/l4e6XelAgq.verified.txt index a604398332..4aa4760af9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/nweFjpXFsL.verified.txt index f82d1fd402..3694d6f2e7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/oQTi0amgPS.verified.txt index 56a3bc73ee..a9eb6f2322 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ono9JkTnAN.verified.txt index 9c8ffbaa5c..c85931415b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/pZUfYns8zh.verified.txt index 2da7ebe106..90db6d618e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/puxvvYTSLO.verified.txt index 418cbb5fc5..721bab5db7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/rjKVwCkFkr.verified.txt index ba08ef9421..1dcb770dec 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/s7fJpcky7C.verified.txt index bdaf6fdaad..a0a1f4aacc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/u8OrI8K7dy.verified.txt index 3945503654..ebca710008 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/uKnQqNmYCb.verified.txt index 894f69f767..ef37f81027 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/uKxa9dnwxN.verified.txt index 7236e76935..d61d9bd267 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/xrqw8zdbit.verified.txt index 4616febaff..75f970d3d1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.6.1/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/1h0XbQEjc6.verified.txt index 8d82edde5c..a4eb3e066d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/2GQW6JDMp3.verified.txt index c16cc2b62e..d74e329a47 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/2h4RxJmd8y.verified.txt index 305be1bae9..cc73863b05 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3HolOeXE6X.verified.txt index 3714f0470c..65b6a3163a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3mBWDp16rd.verified.txt index 176f333a74..4e8be9fe9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3oAabmt2UZ.verified.txt index 99fafa7b04..2e2aba3bff 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/4qxtVFqAJk.verified.txt index 542dae72d1..6560320f36 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/6HeO7LLgVh.verified.txt index 164ad00c89..1f760a44c7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/6xsKtx6pBG.verified.txt index d90351d9aa..7b56ca148f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/8243ZMXNu5.verified.txt index c29a8f2c6b..915fa539a3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/90qAmH8XZh.verified.txt index c0f6fc7980..f3fb6ad5bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/9tI1cnGakf.verified.txt index f0ae10fbad..25015dc261 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/A3LDARdFrZ.verified.txt index cffcef8732..ad20983cac 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/AGUOBcbY4A.verified.txt index 449803c777..2014504f33 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/BCDkkorwLD.verified.txt index 72f0c177a3..f1bd24795b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/BU0UUvzzuK.verified.txt index c6a92015a3..707e313a84 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/GAiFkQgtr9.verified.txt index 34a7d196d0..03f4bf8d3f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/GbsChMfTbx.verified.txt index 91fea8b984..e188aa753b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/HyJgcfbHDZ.verified.txt index 3f284cf959..93d8b7b21c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/NA3ZnOKVDG.verified.txt index 8aa64dae25..8a7475f099 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/QXgcj72buY.verified.txt index 9ec3470c16..4b069e3635 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/R1tSxHqFWR.verified.txt index 687c31292f..f62ff00ec8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/RSvHJzWcVx.verified.txt index c10dc2a98c..508b9186b0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/Thad6nEDD5.verified.txt index 5f07839a3e..e3b70b8745 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/TxGznMqzl8.verified.txt index 7834c8056c..9b8b877219 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/Uhx1npmK9K.verified.txt index c6b644361e..234ea96030 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/WMVLzBfTuM.verified.txt index ab6bfab6d1..f2a11d27f0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YLETiC8egS.verified.txt index 95acc05bab..6e7619625d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YQ4C8lGTTp.verified.txt index f52666d657..92f5fe6e22 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YmajZMirSq.verified.txt index 051ec37d24..f5bc1681a3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/a5oBj4NMck.verified.txt index 12c610737a..4dea8fdfc0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/bXddhCA2bk.verified.txt index bea172dd71..6c33c6c413 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ezHOpJ7fUj.verified.txt index fcad1f03f4..8232e903e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/f8GfgtBpEy.verified.txt index 9eae1261be..a9493b8fd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/fBsIsd9NEC.verified.txt index 2924818bb9..d3a32c91bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ftvGXa4dWE.verified.txt index 4566bd907d..fc0940634b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ga0wMsAonO.verified.txt index 82c429677b..6c920124d1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/hjyaHa29Jz.verified.txt index d4c599e4fd..e5b72838b9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/iHYaBR6vwE.verified.txt index 906e0f5835..c980008569 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/k1zq0pGwsL.verified.txt index 4d7038c2da..c1f58d8a31 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/l4e6XelAgq.verified.txt index a604398332..4aa4760af9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/nweFjpXFsL.verified.txt index 85299cef11..c92776ee15 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/oQTi0amgPS.verified.txt index 56a3bc73ee..a9eb6f2322 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ono9JkTnAN.verified.txt index 69708a639a..e840db0ab5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/pZUfYns8zh.verified.txt index 2da7ebe106..90db6d618e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/puxvvYTSLO.verified.txt index 0be1a01519..2cc9e8468f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/rjKVwCkFkr.verified.txt index ba08ef9421..1dcb770dec 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/s7fJpcky7C.verified.txt index bdaf6fdaad..a0a1f4aacc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/u8OrI8K7dy.verified.txt index 3945503654..ebca710008 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/uKnQqNmYCb.verified.txt index 85a6463df2..b0584ee47b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/uKxa9dnwxN.verified.txt index 36cb640374..62b66964ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/xrqw8zdbit.verified.txt index 183c926b13..2dfb251c1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-fr/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/1h0XbQEjc6.verified.txt index 8d82edde5c..a4eb3e066d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/2GQW6JDMp3.verified.txt index c16cc2b62e..d74e329a47 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/2h4RxJmd8y.verified.txt index 305be1bae9..cc73863b05 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3HolOeXE6X.verified.txt index 3714f0470c..65b6a3163a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3mBWDp16rd.verified.txt index 176f333a74..4e8be9fe9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3oAabmt2UZ.verified.txt index 99fafa7b04..2e2aba3bff 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/4qxtVFqAJk.verified.txt index 542dae72d1..6560320f36 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/6HeO7LLgVh.verified.txt index 164ad00c89..1f760a44c7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/6xsKtx6pBG.verified.txt index d90351d9aa..7b56ca148f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/8243ZMXNu5.verified.txt index c29a8f2c6b..915fa539a3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/90qAmH8XZh.verified.txt index c0f6fc7980..f3fb6ad5bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/9tI1cnGakf.verified.txt index f0ae10fbad..25015dc261 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/A3LDARdFrZ.verified.txt index cffcef8732..ad20983cac 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/AGUOBcbY4A.verified.txt index 449803c777..2014504f33 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/BCDkkorwLD.verified.txt index 72f0c177a3..f1bd24795b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/BU0UUvzzuK.verified.txt index c6a92015a3..707e313a84 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/GAiFkQgtr9.verified.txt index 34a7d196d0..03f4bf8d3f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/GbsChMfTbx.verified.txt index 91fea8b984..e188aa753b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/HyJgcfbHDZ.verified.txt index 3f284cf959..93d8b7b21c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/NA3ZnOKVDG.verified.txt index 8aa64dae25..8a7475f099 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/QXgcj72buY.verified.txt index 9ec3470c16..4b069e3635 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/R1tSxHqFWR.verified.txt index 687c31292f..f62ff00ec8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/RSvHJzWcVx.verified.txt index c10dc2a98c..508b9186b0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/Thad6nEDD5.verified.txt index 5f07839a3e..e3b70b8745 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/TxGznMqzl8.verified.txt index 7834c8056c..9b8b877219 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/Uhx1npmK9K.verified.txt index c6b644361e..234ea96030 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/WMVLzBfTuM.verified.txt index ab6bfab6d1..f2a11d27f0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YLETiC8egS.verified.txt index 95acc05bab..6e7619625d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YQ4C8lGTTp.verified.txt index f52666d657..92f5fe6e22 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YmajZMirSq.verified.txt index 051ec37d24..f5bc1681a3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/a5oBj4NMck.verified.txt index 12c610737a..4dea8fdfc0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/bXddhCA2bk.verified.txt index bea172dd71..6c33c6c413 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ezHOpJ7fUj.verified.txt index fcad1f03f4..8232e903e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/f8GfgtBpEy.verified.txt index 9eae1261be..a9493b8fd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/fBsIsd9NEC.verified.txt index 2924818bb9..d3a32c91bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ftvGXa4dWE.verified.txt index 4566bd907d..fc0940634b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ga0wMsAonO.verified.txt index 82c429677b..6c920124d1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/hjyaHa29Jz.verified.txt index d4c599e4fd..e5b72838b9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/iHYaBR6vwE.verified.txt index 906e0f5835..c980008569 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/k1zq0pGwsL.verified.txt index 4d7038c2da..c1f58d8a31 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/l4e6XelAgq.verified.txt index a604398332..4aa4760af9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/nweFjpXFsL.verified.txt index 85299cef11..c92776ee15 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/oQTi0amgPS.verified.txt index 56a3bc73ee..a9eb6f2322 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ono9JkTnAN.verified.txt index 69708a639a..e840db0ab5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/pZUfYns8zh.verified.txt index 2da7ebe106..90db6d618e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/puxvvYTSLO.verified.txt index 0be1a01519..2cc9e8468f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/rjKVwCkFkr.verified.txt index ba08ef9421..1dcb770dec 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/s7fJpcky7C.verified.txt index bdaf6fdaad..a0a1f4aacc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/u8OrI8K7dy.verified.txt index 3945503654..ebca710008 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/uKnQqNmYCb.verified.txt index 85a6463df2..b0584ee47b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/uKxa9dnwxN.verified.txt index 36cb640374..62b66964ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/xrqw8zdbit.verified.txt index 183c926b13..2dfb251c1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8-us/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/1h0XbQEjc6.verified.txt index 8d82edde5c..a4eb3e066d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/2GQW6JDMp3.verified.txt index c16cc2b62e..d74e329a47 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/2h4RxJmd8y.verified.txt index 305be1bae9..cc73863b05 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3HolOeXE6X.verified.txt index 3714f0470c..65b6a3163a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3mBWDp16rd.verified.txt index 176f333a74..4e8be9fe9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3oAabmt2UZ.verified.txt index 99fafa7b04..2e2aba3bff 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/4qxtVFqAJk.verified.txt index 542dae72d1..6560320f36 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/6HeO7LLgVh.verified.txt index 164ad00c89..1f760a44c7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/6xsKtx6pBG.verified.txt index d90351d9aa..7b56ca148f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/8243ZMXNu5.verified.txt index c29a8f2c6b..915fa539a3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/90qAmH8XZh.verified.txt index c0f6fc7980..f3fb6ad5bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/9tI1cnGakf.verified.txt index f0ae10fbad..25015dc261 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/A3LDARdFrZ.verified.txt index cffcef8732..ad20983cac 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/AGUOBcbY4A.verified.txt index 449803c777..2014504f33 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/BCDkkorwLD.verified.txt index 72f0c177a3..f1bd24795b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/BU0UUvzzuK.verified.txt index c6a92015a3..707e313a84 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/GAiFkQgtr9.verified.txt index 34a7d196d0..03f4bf8d3f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/GbsChMfTbx.verified.txt index 91fea8b984..e188aa753b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/HyJgcfbHDZ.verified.txt index 3f284cf959..93d8b7b21c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/NA3ZnOKVDG.verified.txt index 8aa64dae25..8a7475f099 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/QXgcj72buY.verified.txt index 9ec3470c16..4b069e3635 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/R1tSxHqFWR.verified.txt index 687c31292f..f62ff00ec8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/RSvHJzWcVx.verified.txt index c10dc2a98c..508b9186b0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/Thad6nEDD5.verified.txt index 5f07839a3e..e3b70b8745 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/TxGznMqzl8.verified.txt index 7834c8056c..9b8b877219 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/Uhx1npmK9K.verified.txt index c6b644361e..234ea96030 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/WMVLzBfTuM.verified.txt index ab6bfab6d1..f2a11d27f0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YLETiC8egS.verified.txt index 95acc05bab..6e7619625d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YQ4C8lGTTp.verified.txt index f52666d657..92f5fe6e22 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YmajZMirSq.verified.txt index 051ec37d24..f5bc1681a3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/a5oBj4NMck.verified.txt index 12c610737a..4dea8fdfc0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/bXddhCA2bk.verified.txt index bea172dd71..6c33c6c413 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ezHOpJ7fUj.verified.txt index fcad1f03f4..8232e903e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/f8GfgtBpEy.verified.txt index 9eae1261be..a9493b8fd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/fBsIsd9NEC.verified.txt index 2924818bb9..d3a32c91bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ftvGXa4dWE.verified.txt index 4566bd907d..fc0940634b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ga0wMsAonO.verified.txt index 82c429677b..6c920124d1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/hjyaHa29Jz.verified.txt index d4c599e4fd..e5b72838b9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/iHYaBR6vwE.verified.txt index 906e0f5835..c980008569 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/k1zq0pGwsL.verified.txt index 4d7038c2da..c1f58d8a31 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/l4e6XelAgq.verified.txt index a604398332..4aa4760af9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/nweFjpXFsL.verified.txt index 85299cef11..c92776ee15 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/oQTi0amgPS.verified.txt index 56a3bc73ee..a9eb6f2322 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ono9JkTnAN.verified.txt index 69708a639a..e840db0ab5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/pZUfYns8zh.verified.txt index 2da7ebe106..90db6d618e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/puxvvYTSLO.verified.txt index 0be1a01519..2cc9e8468f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/rjKVwCkFkr.verified.txt index ba08ef9421..1dcb770dec 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/s7fJpcky7C.verified.txt index bdaf6fdaad..a0a1f4aacc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/u8OrI8K7dy.verified.txt index 3945503654..ebca710008 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/uKnQqNmYCb.verified.txt index 85a6463df2..b0584ee47b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/uKxa9dnwxN.verified.txt index 36cb640374..62b66964ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/xrqw8zdbit.verified.txt index 183c926b13..2dfb251c1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v4.8/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/1h0XbQEjc6.verified.txt index 4d3ea86732..05c60f6794 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/2GQW6JDMp3.verified.txt index 2922325d51..c4ca486396 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/2h4RxJmd8y.verified.txt index 4f71175e82..96fbbbc2b1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3HolOeXE6X.verified.txt index ab8ee9f7b9..1bbf40b21e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3mBWDp16rd.verified.txt index d44be652e6..a94d933dd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3oAabmt2UZ.verified.txt index 0cad2111b2..03094ed32c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/4qxtVFqAJk.verified.txt index 62b8e5ba56..d9e81c2643 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/6HeO7LLgVh.verified.txt index 8e264530ba..d245a688f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/6xsKtx6pBG.verified.txt index 3e92aa3428..78ed0588da 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/8243ZMXNu5.verified.txt index cfe821edfb..788644fe99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/90qAmH8XZh.verified.txt index ad0b6c5b8d..c3d776ee1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/A3LDARdFrZ.verified.txt index f24842152c..f2c728fc6c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/AGUOBcbY4A.verified.txt index c6b6505c36..96de05436a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/BCDkkorwLD.verified.txt index 40dbac64db..6845747647 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/BU0UUvzzuK.verified.txt index bd8998571b..432eca5e49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/GbsChMfTbx.verified.txt index 22fa177c99..a261be03bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/HyJgcfbHDZ.verified.txt index 1f1c273280..0bcc02b95c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/NA3ZnOKVDG.verified.txt index 467c839cd1..205de8fbad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/QXgcj72buY.verified.txt index f1ffe49af2..ae0318b756 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/R1tSxHqFWR.verified.txt index 85650e43f7..b9ad176779 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/RSvHJzWcVx.verified.txt index 99cca848c5..76b8aca884 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/Thad6nEDD5.verified.txt index 9dc70b96a5..1d8e789af4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/TxGznMqzl8.verified.txt index 98024b5eac..752158180a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/Uhx1npmK9K.verified.txt index e74e694951..231bd9de0f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/WMVLzBfTuM.verified.txt index f5259705c7..59138c76dd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YLETiC8egS.verified.txt index e469103a37..9ac14e67f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YQ4C8lGTTp.verified.txt index 67b9da422e..4dd357f9ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YmajZMirSq.verified.txt index 8dda93c7d7..ed7ae0ec0d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/a5oBj4NMck.verified.txt index b4d3a902a0..f74af52d08 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/bXddhCA2bk.verified.txt index a618103f22..4c4049bc40 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/f8GfgtBpEy.verified.txt index d04566f890..3a58d25403 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/fBsIsd9NEC.verified.txt index d432f595bf..672ca094be 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ga0wMsAonO.verified.txt index 4d6a7bad33..8efba52f9d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/hjyaHa29Jz.verified.txt index b208b55f69..d2d060382a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/iHYaBR6vwE.verified.txt index 596260d05e..dbb99e9767 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/k1zq0pGwsL.verified.txt index b84c316f45..b9eca88c57 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/nweFjpXFsL.verified.txt index 8bb294b674..97fa36514b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/oQTi0amgPS.verified.txt index a9a9f4a670..b32dc1ccd5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ono9JkTnAN.verified.txt index 5e5763d536..5cfeea4ecc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/puxvvYTSLO.verified.txt index c932be6ed5..8bdbef7858 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/rjKVwCkFkr.verified.txt index 7d85eccf3e..da7380de48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/uKnQqNmYCb.verified.txt index ae5160054e..4e60e64c97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/uKxa9dnwxN.verified.txt index 267d0fe767..a56a4188fc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/xrqw8zdbit.verified.txt index 89bc2b783b..cd9c052328 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-fr/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/1h0XbQEjc6.verified.txt index 4d3ea86732..05c60f6794 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/2GQW6JDMp3.verified.txt index 2922325d51..c4ca486396 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/2h4RxJmd8y.verified.txt index 4f71175e82..96fbbbc2b1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3HolOeXE6X.verified.txt index ab8ee9f7b9..1bbf40b21e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3mBWDp16rd.verified.txt index d44be652e6..a94d933dd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3oAabmt2UZ.verified.txt index 0cad2111b2..03094ed32c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/4qxtVFqAJk.verified.txt index 62b8e5ba56..d9e81c2643 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/6HeO7LLgVh.verified.txt index 8e264530ba..d245a688f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/6xsKtx6pBG.verified.txt index 3e92aa3428..78ed0588da 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/8243ZMXNu5.verified.txt index cfe821edfb..788644fe99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/90qAmH8XZh.verified.txt index ad0b6c5b8d..c3d776ee1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/A3LDARdFrZ.verified.txt index f24842152c..f2c728fc6c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/AGUOBcbY4A.verified.txt index c6b6505c36..96de05436a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/BCDkkorwLD.verified.txt index 40dbac64db..6845747647 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/BU0UUvzzuK.verified.txt index bd8998571b..432eca5e49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/GbsChMfTbx.verified.txt index 22fa177c99..a261be03bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/HyJgcfbHDZ.verified.txt index 1f1c273280..0bcc02b95c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/NA3ZnOKVDG.verified.txt index 467c839cd1..205de8fbad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/QXgcj72buY.verified.txt index f1ffe49af2..ae0318b756 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/R1tSxHqFWR.verified.txt index 85650e43f7..b9ad176779 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/RSvHJzWcVx.verified.txt index 99cca848c5..76b8aca884 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/Thad6nEDD5.verified.txt index 9dc70b96a5..1d8e789af4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/TxGznMqzl8.verified.txt index 98024b5eac..752158180a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/Uhx1npmK9K.verified.txt index e74e694951..231bd9de0f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/WMVLzBfTuM.verified.txt index f5259705c7..59138c76dd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YLETiC8egS.verified.txt index e469103a37..9ac14e67f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YQ4C8lGTTp.verified.txt index 67b9da422e..4dd357f9ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YmajZMirSq.verified.txt index 8dda93c7d7..ed7ae0ec0d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/a5oBj4NMck.verified.txt index b4d3a902a0..f74af52d08 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/bXddhCA2bk.verified.txt index a618103f22..4c4049bc40 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/f8GfgtBpEy.verified.txt index d04566f890..3a58d25403 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/fBsIsd9NEC.verified.txt index d432f595bf..672ca094be 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ga0wMsAonO.verified.txt index 4d6a7bad33..8efba52f9d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/hjyaHa29Jz.verified.txt index b208b55f69..d2d060382a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/iHYaBR6vwE.verified.txt index 596260d05e..dbb99e9767 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/k1zq0pGwsL.verified.txt index b84c316f45..b9eca88c57 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/nweFjpXFsL.verified.txt index 8bb294b674..97fa36514b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/oQTi0amgPS.verified.txt index a9a9f4a670..b32dc1ccd5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ono9JkTnAN.verified.txt index 5e5763d536..5cfeea4ecc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/puxvvYTSLO.verified.txt index c932be6ed5..8bdbef7858 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/rjKVwCkFkr.verified.txt index 7d85eccf3e..da7380de48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/uKnQqNmYCb.verified.txt index ae5160054e..4e60e64c97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/uKxa9dnwxN.verified.txt index 267d0fe767..a56a4188fc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/xrqw8zdbit.verified.txt index 89bc2b783b..cd9c052328 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0-us/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/1h0XbQEjc6.verified.txt index 4d3ea86732..05c60f6794 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/2GQW6JDMp3.verified.txt index 2922325d51..c4ca486396 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/2h4RxJmd8y.verified.txt index 4f71175e82..96fbbbc2b1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3HolOeXE6X.verified.txt index ab8ee9f7b9..1bbf40b21e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3mBWDp16rd.verified.txt index d44be652e6..a94d933dd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3oAabmt2UZ.verified.txt index 0cad2111b2..03094ed32c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/4qxtVFqAJk.verified.txt index 62b8e5ba56..d9e81c2643 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/6HeO7LLgVh.verified.txt index 8e264530ba..d245a688f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/6xsKtx6pBG.verified.txt index 3e92aa3428..78ed0588da 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/8243ZMXNu5.verified.txt index cfe821edfb..788644fe99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/90qAmH8XZh.verified.txt index ad0b6c5b8d..c3d776ee1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/A3LDARdFrZ.verified.txt index f24842152c..f2c728fc6c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/AGUOBcbY4A.verified.txt index c6b6505c36..96de05436a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/BCDkkorwLD.verified.txt index 40dbac64db..6845747647 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/BU0UUvzzuK.verified.txt index bd8998571b..432eca5e49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/GbsChMfTbx.verified.txt index 22fa177c99..a261be03bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/HyJgcfbHDZ.verified.txt index 1f1c273280..0bcc02b95c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/NA3ZnOKVDG.verified.txt index 467c839cd1..205de8fbad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/QXgcj72buY.verified.txt index f1ffe49af2..ae0318b756 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/R1tSxHqFWR.verified.txt index 85650e43f7..b9ad176779 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/RSvHJzWcVx.verified.txt index 99cca848c5..76b8aca884 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/Thad6nEDD5.verified.txt index 9dc70b96a5..1d8e789af4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/TxGznMqzl8.verified.txt index 98024b5eac..752158180a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/Uhx1npmK9K.verified.txt index e74e694951..231bd9de0f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/WMVLzBfTuM.verified.txt index f5259705c7..59138c76dd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YLETiC8egS.verified.txt index e469103a37..9ac14e67f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YQ4C8lGTTp.verified.txt index 67b9da422e..4dd357f9ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YmajZMirSq.verified.txt index 8dda93c7d7..ed7ae0ec0d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/a5oBj4NMck.verified.txt index b4d3a902a0..f74af52d08 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/bXddhCA2bk.verified.txt index a618103f22..4c4049bc40 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/f8GfgtBpEy.verified.txt index d04566f890..3a58d25403 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/fBsIsd9NEC.verified.txt index d432f595bf..672ca094be 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ga0wMsAonO.verified.txt index 4d6a7bad33..8efba52f9d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/hjyaHa29Jz.verified.txt index b208b55f69..d2d060382a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/iHYaBR6vwE.verified.txt index 596260d05e..dbb99e9767 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/k1zq0pGwsL.verified.txt index b84c316f45..b9eca88c57 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/nweFjpXFsL.verified.txt index 8bb294b674..97fa36514b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/oQTi0amgPS.verified.txt index a9a9f4a670..b32dc1ccd5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ono9JkTnAN.verified.txt index 5e5763d536..5cfeea4ecc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/puxvvYTSLO.verified.txt index c932be6ed5..8bdbef7858 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/rjKVwCkFkr.verified.txt index 7d85eccf3e..da7380de48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/uKnQqNmYCb.verified.txt index ae5160054e..4e60e64c97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/uKxa9dnwxN.verified.txt index 267d0fe767..a56a4188fc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/xrqw8zdbit.verified.txt index 89bc2b783b..cd9c052328 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v5.0/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/1h0XbQEjc6.verified.txt index 4d3ea86732..05c60f6794 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/2GQW6JDMp3.verified.txt index 2922325d51..c4ca486396 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/2h4RxJmd8y.verified.txt index 4f71175e82..96fbbbc2b1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3HolOeXE6X.verified.txt index ab8ee9f7b9..1bbf40b21e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3mBWDp16rd.verified.txt index d44be652e6..a94d933dd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3oAabmt2UZ.verified.txt index 0cad2111b2..03094ed32c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/4qxtVFqAJk.verified.txt index 62b8e5ba56..d9e81c2643 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/6HeO7LLgVh.verified.txt index 8e264530ba..d245a688f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/6xsKtx6pBG.verified.txt index 3e92aa3428..78ed0588da 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/8243ZMXNu5.verified.txt index cfe821edfb..788644fe99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/90qAmH8XZh.verified.txt index ad0b6c5b8d..c3d776ee1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/A3LDARdFrZ.verified.txt index f24842152c..f2c728fc6c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/AGUOBcbY4A.verified.txt index c6b6505c36..96de05436a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/BCDkkorwLD.verified.txt index 40dbac64db..6845747647 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/BU0UUvzzuK.verified.txt index bd8998571b..432eca5e49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/GbsChMfTbx.verified.txt index 22fa177c99..a261be03bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/HyJgcfbHDZ.verified.txt index 1f1c273280..0bcc02b95c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/NA3ZnOKVDG.verified.txt index 467c839cd1..205de8fbad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/QXgcj72buY.verified.txt index f1ffe49af2..ae0318b756 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/R1tSxHqFWR.verified.txt index 85650e43f7..b9ad176779 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/RSvHJzWcVx.verified.txt index 99cca848c5..76b8aca884 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/Thad6nEDD5.verified.txt index 9dc70b96a5..1d8e789af4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/TxGznMqzl8.verified.txt index 98024b5eac..752158180a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/Uhx1npmK9K.verified.txt index e74e694951..231bd9de0f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/WMVLzBfTuM.verified.txt index f5259705c7..59138c76dd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YLETiC8egS.verified.txt index e469103a37..9ac14e67f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YQ4C8lGTTp.verified.txt index 67b9da422e..4dd357f9ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YmajZMirSq.verified.txt index 8dda93c7d7..ed7ae0ec0d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/a5oBj4NMck.verified.txt index b4d3a902a0..f74af52d08 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/bXddhCA2bk.verified.txt index a618103f22..4c4049bc40 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/f8GfgtBpEy.verified.txt index d04566f890..3a58d25403 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/fBsIsd9NEC.verified.txt index d432f595bf..672ca094be 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ga0wMsAonO.verified.txt index 4d6a7bad33..8efba52f9d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/hjyaHa29Jz.verified.txt index b208b55f69..d2d060382a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/iHYaBR6vwE.verified.txt index 596260d05e..dbb99e9767 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/k1zq0pGwsL.verified.txt index b84c316f45..b9eca88c57 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/nweFjpXFsL.verified.txt index 8bb294b674..97fa36514b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/oQTi0amgPS.verified.txt index a9a9f4a670..b32dc1ccd5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ono9JkTnAN.verified.txt index 5e5763d536..5cfeea4ecc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/puxvvYTSLO.verified.txt index c932be6ed5..8bdbef7858 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/rjKVwCkFkr.verified.txt index 7d85eccf3e..da7380de48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/uKnQqNmYCb.verified.txt index ae5160054e..4e60e64c97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/uKxa9dnwxN.verified.txt index 267d0fe767..a56a4188fc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/xrqw8zdbit.verified.txt index 89bc2b783b..cd9c052328 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-fr/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/1h0XbQEjc6.verified.txt index 4d3ea86732..05c60f6794 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/2GQW6JDMp3.verified.txt index 2922325d51..c4ca486396 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/2h4RxJmd8y.verified.txt index 4f71175e82..96fbbbc2b1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3HolOeXE6X.verified.txt index ab8ee9f7b9..1bbf40b21e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3mBWDp16rd.verified.txt index d44be652e6..a94d933dd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3oAabmt2UZ.verified.txt index 0cad2111b2..03094ed32c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/4qxtVFqAJk.verified.txt index 62b8e5ba56..d9e81c2643 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/6HeO7LLgVh.verified.txt index 8e264530ba..d245a688f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/6xsKtx6pBG.verified.txt index 3e92aa3428..78ed0588da 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/8243ZMXNu5.verified.txt index cfe821edfb..788644fe99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/90qAmH8XZh.verified.txt index ad0b6c5b8d..c3d776ee1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/A3LDARdFrZ.verified.txt index f24842152c..f2c728fc6c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/AGUOBcbY4A.verified.txt index c6b6505c36..96de05436a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/BCDkkorwLD.verified.txt index 40dbac64db..6845747647 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/BU0UUvzzuK.verified.txt index bd8998571b..432eca5e49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/GbsChMfTbx.verified.txt index 22fa177c99..a261be03bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/HyJgcfbHDZ.verified.txt index 1f1c273280..0bcc02b95c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/NA3ZnOKVDG.verified.txt index 467c839cd1..205de8fbad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/QXgcj72buY.verified.txt index f1ffe49af2..ae0318b756 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/R1tSxHqFWR.verified.txt index 85650e43f7..b9ad176779 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/RSvHJzWcVx.verified.txt index 99cca848c5..76b8aca884 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/Thad6nEDD5.verified.txt index 9dc70b96a5..1d8e789af4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/TxGznMqzl8.verified.txt index 98024b5eac..752158180a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/Uhx1npmK9K.verified.txt index e74e694951..231bd9de0f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/WMVLzBfTuM.verified.txt index f5259705c7..59138c76dd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YLETiC8egS.verified.txt index e469103a37..9ac14e67f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YQ4C8lGTTp.verified.txt index 67b9da422e..4dd357f9ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YmajZMirSq.verified.txt index 8dda93c7d7..ed7ae0ec0d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/a5oBj4NMck.verified.txt index b4d3a902a0..f74af52d08 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/bXddhCA2bk.verified.txt index a618103f22..4c4049bc40 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/f8GfgtBpEy.verified.txt index d04566f890..3a58d25403 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/fBsIsd9NEC.verified.txt index d432f595bf..672ca094be 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ga0wMsAonO.verified.txt index 4d6a7bad33..8efba52f9d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/hjyaHa29Jz.verified.txt index b208b55f69..d2d060382a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/iHYaBR6vwE.verified.txt index 596260d05e..dbb99e9767 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/k1zq0pGwsL.verified.txt index b84c316f45..b9eca88c57 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/nweFjpXFsL.verified.txt index 8bb294b674..97fa36514b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/oQTi0amgPS.verified.txt index a9a9f4a670..b32dc1ccd5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ono9JkTnAN.verified.txt index 5e5763d536..5cfeea4ecc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/puxvvYTSLO.verified.txt index c932be6ed5..8bdbef7858 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/rjKVwCkFkr.verified.txt index 7d85eccf3e..da7380de48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/uKnQqNmYCb.verified.txt index ae5160054e..4e60e64c97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/uKxa9dnwxN.verified.txt index 267d0fe767..a56a4188fc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/xrqw8zdbit.verified.txt index 89bc2b783b..cd9c052328 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0-us/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/1h0XbQEjc6.verified.txt index 4d3ea86732..05c60f6794 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/2GQW6JDMp3.verified.txt index 2922325d51..c4ca486396 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/2h4RxJmd8y.verified.txt index 4f71175e82..96fbbbc2b1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3HolOeXE6X.verified.txt index ab8ee9f7b9..1bbf40b21e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3T2fWsQsO5.verified.txt index 6bb4e8e8c9..7382a730db 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3mBWDp16rd.verified.txt index d44be652e6..a94d933dd8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3oAabmt2UZ.verified.txt index 0cad2111b2..03094ed32c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/4qxtVFqAJk.verified.txt index 62b8e5ba56..d9e81c2643 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/6HeO7LLgVh.verified.txt index 8e264530ba..d245a688f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/6xsKtx6pBG.verified.txt index 3e92aa3428..78ed0588da 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/8243ZMXNu5.verified.txt index cfe821edfb..788644fe99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/90qAmH8XZh.verified.txt index ad0b6c5b8d..c3d776ee1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/A3LDARdFrZ.verified.txt index f24842152c..f2c728fc6c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/AGUOBcbY4A.verified.txt index c6b6505c36..96de05436a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/BCDkkorwLD.verified.txt index 40dbac64db..6845747647 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/BU0UUvzzuK.verified.txt index bd8998571b..432eca5e49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/GbsChMfTbx.verified.txt index 22fa177c99..a261be03bc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/HyJgcfbHDZ.verified.txt index 1f1c273280..0bcc02b95c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/NA3ZnOKVDG.verified.txt index 467c839cd1..205de8fbad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/QFbd4pSPuE.verified.txt index 0368180333..02343b0633 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/QXgcj72buY.verified.txt index f1ffe49af2..ae0318b756 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/R1tSxHqFWR.verified.txt index 85650e43f7..b9ad176779 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/RSvHJzWcVx.verified.txt index 99cca848c5..76b8aca884 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/Thad6nEDD5.verified.txt index 9dc70b96a5..1d8e789af4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/TxGznMqzl8.verified.txt index 98024b5eac..752158180a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/Uhx1npmK9K.verified.txt index e74e694951..231bd9de0f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/WMVLzBfTuM.verified.txt index f5259705c7..59138c76dd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/WvGMnz5BEv.verified.txt index bed7a4ba22..97ba82af48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YLETiC8egS.verified.txt index e469103a37..9ac14e67f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YQ4C8lGTTp.verified.txt index 67b9da422e..4dd357f9ad 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YmajZMirSq.verified.txt index 8dda93c7d7..ed7ae0ec0d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/a5oBj4NMck.verified.txt index b4d3a902a0..f74af52d08 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/bXddhCA2bk.verified.txt index a618103f22..4c4049bc40 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/f8GfgtBpEy.verified.txt index d04566f890..3a58d25403 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/fBsIsd9NEC.verified.txt index d432f595bf..672ca094be 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ga0wMsAonO.verified.txt index 4d6a7bad33..8efba52f9d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/hjyaHa29Jz.verified.txt index b208b55f69..d2d060382a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/iHYaBR6vwE.verified.txt index 596260d05e..dbb99e9767 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/k1zq0pGwsL.verified.txt index b84c316f45..b9eca88c57 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/nweFjpXFsL.verified.txt index 8bb294b674..97fa36514b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/oQTi0amgPS.verified.txt index a9a9f4a670..b32dc1ccd5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ono9JkTnAN.verified.txt index 5e5763d536..5cfeea4ecc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/puxvvYTSLO.verified.txt index c932be6ed5..8bdbef7858 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/qXtlb4zWul.verified.txt index 85420e9c78..f1898fed5e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/rjKVwCkFkr.verified.txt index 7d85eccf3e..da7380de48 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/uKnQqNmYCb.verified.txt index ae5160054e..4e60e64c97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/uKxa9dnwxN.verified.txt index 267d0fe767..a56a4188fc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/xrqw8zdbit.verified.txt index 89bc2b783b..cd9c052328 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v6.0/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/1h0XbQEjc6.verified.txt index d16634cc25..ff02838fa8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/2GQW6JDMp3.verified.txt index b8d6ffae45..71619ed903 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/2h4RxJmd8y.verified.txt index 30783a6731..06cb5ca232 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3HolOeXE6X.verified.txt index d1c192569f..6da89def8c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3T2fWsQsO5.verified.txt index 5849ed6030..d69fe29716 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3mBWDp16rd.verified.txt index d2ed2b0ac3..0da30ee6b7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3oAabmt2UZ.verified.txt index aa6ba2e612..760dd739ff 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/4qxtVFqAJk.verified.txt index 7ca72bbc01..5c5d235e4b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/6HeO7LLgVh.verified.txt index c080ed6b16..b39e89be2d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/6xsKtx6pBG.verified.txt index 497c3e5318..b557bc70a2 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/8243ZMXNu5.verified.txt index 2d74b57c53..47135e5d0a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/90qAmH8XZh.verified.txt index 82a2cdc1fd..ba6164fbeb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/A3LDARdFrZ.verified.txt index 59d2916813..8b32c795a8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/AGUOBcbY4A.verified.txt index 3f68c349fb..dfa50a6bdc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/BCDkkorwLD.verified.txt index 11b8d4c77f..3a9d8c602e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/BU0UUvzzuK.verified.txt index 4fbe7b6e12..e563acf8ab 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/GbsChMfTbx.verified.txt index 6e325d2559..3df0b2ef17 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/HyJgcfbHDZ.verified.txt index 9bb81d5e55..1d94b4019b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/NA3ZnOKVDG.verified.txt index 0e8328fbba..b63d4e5d51 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/QFbd4pSPuE.verified.txt index f8495cae7a..760acd5427 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/QXgcj72buY.verified.txt index f6eea5c6da..e174990c99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/R1tSxHqFWR.verified.txt index 4c7d551053..379d988878 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/RSvHJzWcVx.verified.txt index f59fe268f4..d70f744f56 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/Thad6nEDD5.verified.txt index 69a845d337..4ff31f3265 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/TxGznMqzl8.verified.txt index bb444ee9d1..38eaf826d9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/Uhx1npmK9K.verified.txt index b333951429..92650a3de1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/WMVLzBfTuM.verified.txt index 385b997557..18b3184a19 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/WvGMnz5BEv.verified.txt index f3610d6671..9d1837238c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YLETiC8egS.verified.txt index acedf74dd8..e9de1d4ad6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YQ4C8lGTTp.verified.txt index ffa9dd103a..56547ab89c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YmajZMirSq.verified.txt index 7b0c9b9f05..54215df407 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/a5oBj4NMck.verified.txt index a3a5b834f3..22e421a77d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/bXddhCA2bk.verified.txt index 5bbd7425ad..5915b549f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/f8GfgtBpEy.verified.txt index 6da58ef6c0..bbc9491676 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/fBsIsd9NEC.verified.txt index 1cb569de0a..49a1ec7ceb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ga0wMsAonO.verified.txt index b4b89ad50e..d887c55286 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/hjyaHa29Jz.verified.txt index 5b2fa64ab1..de702da0ff 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/iHYaBR6vwE.verified.txt index 32a96dbbda..2350b707e0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/k1zq0pGwsL.verified.txt index cb48ac4b07..61fbc9914c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/nweFjpXFsL.verified.txt index cca927180c..4ec1891b1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/oQTi0amgPS.verified.txt index 182a1b57a3..cd66a7e0cb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ono9JkTnAN.verified.txt index 21361d7ae9..d0883786f4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/puxvvYTSLO.verified.txt index 1ecb8890f1..9fe1aa5705 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/qXtlb4zWul.verified.txt index 2258af8707..c1b2412410 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/rjKVwCkFkr.verified.txt index 788794440e..30e8cb6d9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/uKnQqNmYCb.verified.txt index 31dc357ae1..2336ba47e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/uKxa9dnwxN.verified.txt index 663ac8a30b..adbdca9d67 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/xrqw8zdbit.verified.txt index d32c832746..6df0b4dcb0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-fr/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/1h0XbQEjc6.verified.txt index d16634cc25..ff02838fa8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/2GQW6JDMp3.verified.txt index b8d6ffae45..71619ed903 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/2h4RxJmd8y.verified.txt index 30783a6731..06cb5ca232 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3HolOeXE6X.verified.txt index d1c192569f..6da89def8c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3T2fWsQsO5.verified.txt index 5849ed6030..d69fe29716 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3mBWDp16rd.verified.txt index d2ed2b0ac3..0da30ee6b7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3oAabmt2UZ.verified.txt index aa6ba2e612..760dd739ff 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/4qxtVFqAJk.verified.txt index 7ca72bbc01..5c5d235e4b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/6HeO7LLgVh.verified.txt index c080ed6b16..b39e89be2d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/6xsKtx6pBG.verified.txt index 497c3e5318..b557bc70a2 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/8243ZMXNu5.verified.txt index 2d74b57c53..47135e5d0a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/90qAmH8XZh.verified.txt index 82a2cdc1fd..ba6164fbeb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/A3LDARdFrZ.verified.txt index 59d2916813..8b32c795a8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/AGUOBcbY4A.verified.txt index 3f68c349fb..dfa50a6bdc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/BCDkkorwLD.verified.txt index 11b8d4c77f..3a9d8c602e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/BU0UUvzzuK.verified.txt index 4fbe7b6e12..e563acf8ab 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/GbsChMfTbx.verified.txt index 6e325d2559..3df0b2ef17 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/HyJgcfbHDZ.verified.txt index 9bb81d5e55..1d94b4019b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/NA3ZnOKVDG.verified.txt index 0e8328fbba..b63d4e5d51 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/QFbd4pSPuE.verified.txt index f8495cae7a..760acd5427 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/QXgcj72buY.verified.txt index f6eea5c6da..e174990c99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/R1tSxHqFWR.verified.txt index 4c7d551053..379d988878 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/RSvHJzWcVx.verified.txt index f59fe268f4..d70f744f56 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/Thad6nEDD5.verified.txt index 69a845d337..4ff31f3265 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/TxGznMqzl8.verified.txt index bb444ee9d1..38eaf826d9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/Uhx1npmK9K.verified.txt index b333951429..92650a3de1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/WMVLzBfTuM.verified.txt index 385b997557..18b3184a19 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/WvGMnz5BEv.verified.txt index f3610d6671..9d1837238c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YLETiC8egS.verified.txt index acedf74dd8..e9de1d4ad6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YQ4C8lGTTp.verified.txt index ffa9dd103a..56547ab89c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YmajZMirSq.verified.txt index 7b0c9b9f05..54215df407 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/a5oBj4NMck.verified.txt index a3a5b834f3..22e421a77d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/bXddhCA2bk.verified.txt index 5bbd7425ad..5915b549f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/f8GfgtBpEy.verified.txt index 6da58ef6c0..bbc9491676 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/fBsIsd9NEC.verified.txt index 1cb569de0a..49a1ec7ceb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ga0wMsAonO.verified.txt index b4b89ad50e..d887c55286 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/hjyaHa29Jz.verified.txt index 5b2fa64ab1..de702da0ff 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/iHYaBR6vwE.verified.txt index 32a96dbbda..2350b707e0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/k1zq0pGwsL.verified.txt index cb48ac4b07..61fbc9914c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/nweFjpXFsL.verified.txt index cca927180c..4ec1891b1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/oQTi0amgPS.verified.txt index 182a1b57a3..cd66a7e0cb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ono9JkTnAN.verified.txt index 21361d7ae9..d0883786f4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/puxvvYTSLO.verified.txt index 1ecb8890f1..9fe1aa5705 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/qXtlb4zWul.verified.txt index 2258af8707..c1b2412410 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/rjKVwCkFkr.verified.txt index 788794440e..30e8cb6d9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/uKnQqNmYCb.verified.txt index 31dc357ae1..2336ba47e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/uKxa9dnwxN.verified.txt index 663ac8a30b..adbdca9d67 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/xrqw8zdbit.verified.txt index d32c832746..6df0b4dcb0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0-us/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/1h0XbQEjc6.verified.txt index d16634cc25..ff02838fa8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/2GQW6JDMp3.verified.txt index b8d6ffae45..71619ed903 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/2h4RxJmd8y.verified.txt index 30783a6731..06cb5ca232 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3HolOeXE6X.verified.txt index d1c192569f..6da89def8c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3T2fWsQsO5.verified.txt index 5849ed6030..d69fe29716 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3mBWDp16rd.verified.txt index d2ed2b0ac3..0da30ee6b7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3oAabmt2UZ.verified.txt index aa6ba2e612..760dd739ff 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/4qxtVFqAJk.verified.txt index 7ca72bbc01..5c5d235e4b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/6HeO7LLgVh.verified.txt index c080ed6b16..b39e89be2d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/6xsKtx6pBG.verified.txt index 497c3e5318..b557bc70a2 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/8243ZMXNu5.verified.txt index 2d74b57c53..47135e5d0a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/90qAmH8XZh.verified.txt index 82a2cdc1fd..ba6164fbeb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/A3LDARdFrZ.verified.txt index 59d2916813..8b32c795a8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/AGUOBcbY4A.verified.txt index 3f68c349fb..dfa50a6bdc 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/BCDkkorwLD.verified.txt index 11b8d4c77f..3a9d8c602e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/BU0UUvzzuK.verified.txt index 4fbe7b6e12..e563acf8ab 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/GbsChMfTbx.verified.txt index 6e325d2559..3df0b2ef17 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/HyJgcfbHDZ.verified.txt index 9bb81d5e55..1d94b4019b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/NA3ZnOKVDG.verified.txt index 0e8328fbba..b63d4e5d51 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/QFbd4pSPuE.verified.txt index f8495cae7a..760acd5427 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/QXgcj72buY.verified.txt index f6eea5c6da..e174990c99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/R1tSxHqFWR.verified.txt index 4c7d551053..379d988878 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/RSvHJzWcVx.verified.txt index f59fe268f4..d70f744f56 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/Thad6nEDD5.verified.txt index 69a845d337..4ff31f3265 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/TxGznMqzl8.verified.txt index bb444ee9d1..38eaf826d9 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/Uhx1npmK9K.verified.txt index b333951429..92650a3de1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/WMVLzBfTuM.verified.txt index 385b997557..18b3184a19 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/WvGMnz5BEv.verified.txt index f3610d6671..9d1837238c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YLETiC8egS.verified.txt index acedf74dd8..e9de1d4ad6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YQ4C8lGTTp.verified.txt index ffa9dd103a..56547ab89c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YmajZMirSq.verified.txt index 7b0c9b9f05..54215df407 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/a5oBj4NMck.verified.txt index a3a5b834f3..22e421a77d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/bXddhCA2bk.verified.txt index 5bbd7425ad..5915b549f5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/f8GfgtBpEy.verified.txt index 6da58ef6c0..bbc9491676 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/fBsIsd9NEC.verified.txt index 1cb569de0a..49a1ec7ceb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ga0wMsAonO.verified.txt index b4b89ad50e..d887c55286 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/hjyaHa29Jz.verified.txt index 5b2fa64ab1..de702da0ff 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/iHYaBR6vwE.verified.txt index 32a96dbbda..2350b707e0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/k1zq0pGwsL.verified.txt index cb48ac4b07..61fbc9914c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/nweFjpXFsL.verified.txt index cca927180c..4ec1891b1e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/oQTi0amgPS.verified.txt index 182a1b57a3..cd66a7e0cb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ono9JkTnAN.verified.txt index 21361d7ae9..d0883786f4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/puxvvYTSLO.verified.txt index 1ecb8890f1..9fe1aa5705 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/qXtlb4zWul.verified.txt index 2258af8707..c1b2412410 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/rjKVwCkFkr.verified.txt index 788794440e..30e8cb6d9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/uKnQqNmYCb.verified.txt index 31dc357ae1..2336ba47e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/uKxa9dnwxN.verified.txt index 663ac8a30b..adbdca9d67 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/xrqw8zdbit.verified.txt index d32c832746..6df0b4dcb0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v7.0/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/1h0XbQEjc6.verified.txt index 3a93969f3f..e9692d53cb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/2GQW6JDMp3.verified.txt index d91d3a99ce..fcb0922843 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/2h4RxJmd8y.verified.txt index d0055dd537..5d7f1a2ea0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3HolOeXE6X.verified.txt index eb0c7003a2..9da13b2a49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3T2fWsQsO5.verified.txt index 5849ed6030..d69fe29716 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3mBWDp16rd.verified.txt index d2ed2b0ac3..0da30ee6b7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3oAabmt2UZ.verified.txt index 0bcdb1ac69..8646de888d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/4qxtVFqAJk.verified.txt index ea6d05cdbd..25c4097137 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/6HeO7LLgVh.verified.txt index c080ed6b16..b39e89be2d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/6xsKtx6pBG.verified.txt index 6f028f0b04..388dc5b5a5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/8243ZMXNu5.verified.txt index 96cca162ee..b214491e6d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/90qAmH8XZh.verified.txt index 82cf5ff68c..708fb3430c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/A3LDARdFrZ.verified.txt index 889050ed1d..1fbf8e6419 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/AGUOBcbY4A.verified.txt index 2f6dfd32d9..dce8706a19 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/BCDkkorwLD.verified.txt index 3f9f9ea20c..89d2e2a1f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/BU0UUvzzuK.verified.txt index 9892d3d3ab..794342d10e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/GbsChMfTbx.verified.txt index fc4c674fff..500763cea1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/HyJgcfbHDZ.verified.txt index 72d42d1275..fc8e08cd97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/NA3ZnOKVDG.verified.txt index 0e8328fbba..b63d4e5d51 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/QFbd4pSPuE.verified.txt index f8495cae7a..760acd5427 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/QXgcj72buY.verified.txt index f6eea5c6da..e174990c99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/R1tSxHqFWR.verified.txt index 17cd6e84d7..6241e66b2b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/RSvHJzWcVx.verified.txt index 2c214d933b..1e6cce7720 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/Thad6nEDD5.verified.txt index 69a845d337..4ff31f3265 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/TxGznMqzl8.verified.txt index b43b9e945d..be973115cd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/Uhx1npmK9K.verified.txt index b333951429..92650a3de1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/WMVLzBfTuM.verified.txt index 385b997557..18b3184a19 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/WvGMnz5BEv.verified.txt index f3610d6671..9d1837238c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YLETiC8egS.verified.txt index 25ba489538..9be42cce73 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YQ4C8lGTTp.verified.txt index e538ae7565..f26faf0da4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YmajZMirSq.verified.txt index 794886d960..d5eb61149c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/a5oBj4NMck.verified.txt index d4c507c9a4..0d1520360b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/bXddhCA2bk.verified.txt index 8dfb84872b..9ef5a920d1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/f8GfgtBpEy.verified.txt index 6da58ef6c0..bbc9491676 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/fBsIsd9NEC.verified.txt index 4b8a5a9f4e..5304aae3e8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ga0wMsAonO.verified.txt index b5316e0f0e..04afa703ea 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/hjyaHa29Jz.verified.txt index 94e8658518..7b54b302e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/iHYaBR6vwE.verified.txt index 32a96dbbda..2350b707e0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/k1zq0pGwsL.verified.txt index cb48ac4b07..61fbc9914c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/nweFjpXFsL.verified.txt index cb37178598..44dc200399 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/oQTi0amgPS.verified.txt index 182a1b57a3..cd66a7e0cb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ono9JkTnAN.verified.txt index aca297cd6f..0f7ea61185 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/puxvvYTSLO.verified.txt index 542451884c..068ddab8ab 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/qXtlb4zWul.verified.txt index 2258af8707..c1b2412410 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/rjKVwCkFkr.verified.txt index 788794440e..30e8cb6d9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/uKnQqNmYCb.verified.txt index 7ba55de75f..6c0e308f4c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/uKxa9dnwxN.verified.txt index 000f0ed41e..99f83011fa 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/xrqw8zdbit.verified.txt index d9092f0563..5985d8305a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-fr/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/1h0XbQEjc6.verified.txt index 3a93969f3f..e9692d53cb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/2GQW6JDMp3.verified.txt index d91d3a99ce..fcb0922843 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/2h4RxJmd8y.verified.txt index d0055dd537..5d7f1a2ea0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3HolOeXE6X.verified.txt index eb0c7003a2..9da13b2a49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3T2fWsQsO5.verified.txt index 5849ed6030..d69fe29716 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3mBWDp16rd.verified.txt index d2ed2b0ac3..0da30ee6b7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3oAabmt2UZ.verified.txt index 0bcdb1ac69..8646de888d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/4qxtVFqAJk.verified.txt index ea6d05cdbd..25c4097137 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/6HeO7LLgVh.verified.txt index c080ed6b16..b39e89be2d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/6xsKtx6pBG.verified.txt index 6f028f0b04..388dc5b5a5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/8243ZMXNu5.verified.txt index 96cca162ee..b214491e6d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/90qAmH8XZh.verified.txt index 82cf5ff68c..708fb3430c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/A3LDARdFrZ.verified.txt index 889050ed1d..1fbf8e6419 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/AGUOBcbY4A.verified.txt index 2f6dfd32d9..dce8706a19 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/BCDkkorwLD.verified.txt index 3f9f9ea20c..89d2e2a1f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/BU0UUvzzuK.verified.txt index 9892d3d3ab..794342d10e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/GbsChMfTbx.verified.txt index fc4c674fff..500763cea1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/HyJgcfbHDZ.verified.txt index 72d42d1275..fc8e08cd97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/NA3ZnOKVDG.verified.txt index 0e8328fbba..b63d4e5d51 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/QFbd4pSPuE.verified.txt index f8495cae7a..760acd5427 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/QXgcj72buY.verified.txt index f6eea5c6da..e174990c99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/R1tSxHqFWR.verified.txt index 17cd6e84d7..6241e66b2b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/RSvHJzWcVx.verified.txt index 2c214d933b..1e6cce7720 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/Thad6nEDD5.verified.txt index 69a845d337..4ff31f3265 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/TxGznMqzl8.verified.txt index b43b9e945d..be973115cd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/Uhx1npmK9K.verified.txt index b333951429..92650a3de1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/WMVLzBfTuM.verified.txt index 385b997557..18b3184a19 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/WvGMnz5BEv.verified.txt index f3610d6671..9d1837238c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YLETiC8egS.verified.txt index 25ba489538..9be42cce73 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YQ4C8lGTTp.verified.txt index e538ae7565..f26faf0da4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YmajZMirSq.verified.txt index 794886d960..d5eb61149c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/a5oBj4NMck.verified.txt index d4c507c9a4..0d1520360b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/bXddhCA2bk.verified.txt index 8dfb84872b..9ef5a920d1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/f8GfgtBpEy.verified.txt index 6da58ef6c0..bbc9491676 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/fBsIsd9NEC.verified.txt index 4b8a5a9f4e..5304aae3e8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ga0wMsAonO.verified.txt index b5316e0f0e..04afa703ea 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/hjyaHa29Jz.verified.txt index 94e8658518..7b54b302e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/iHYaBR6vwE.verified.txt index 32a96dbbda..2350b707e0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/k1zq0pGwsL.verified.txt index cb48ac4b07..61fbc9914c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/nweFjpXFsL.verified.txt index cb37178598..44dc200399 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/oQTi0amgPS.verified.txt index 182a1b57a3..cd66a7e0cb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ono9JkTnAN.verified.txt index aca297cd6f..0f7ea61185 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/puxvvYTSLO.verified.txt index 542451884c..068ddab8ab 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/qXtlb4zWul.verified.txt index 2258af8707..c1b2412410 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/rjKVwCkFkr.verified.txt index 788794440e..30e8cb6d9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/uKnQqNmYCb.verified.txt index 7ba55de75f..6c0e308f4c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/uKxa9dnwxN.verified.txt index 000f0ed41e..99f83011fa 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/xrqw8zdbit.verified.txt index d9092f0563..5985d8305a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0-us/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/1h0XbQEjc6.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/1h0XbQEjc6.verified.txt index 3a93969f3f..e9692d53cb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/1h0XbQEjc6.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/1h0XbQEjc6.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/2GQW6JDMp3.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/2GQW6JDMp3.verified.txt index d91d3a99ce..fcb0922843 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/2GQW6JDMp3.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/2GQW6JDMp3.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/2h4RxJmd8y.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/2h4RxJmd8y.verified.txt index d0055dd537..5d7f1a2ea0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/2h4RxJmd8y.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/2h4RxJmd8y.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3HolOeXE6X.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3HolOeXE6X.verified.txt index eb0c7003a2..9da13b2a49 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3HolOeXE6X.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3HolOeXE6X.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3T2fWsQsO5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3T2fWsQsO5.verified.txt index 5849ed6030..d69fe29716 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3T2fWsQsO5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3T2fWsQsO5.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3mBWDp16rd.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3mBWDp16rd.verified.txt index d2ed2b0ac3..0da30ee6b7 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3mBWDp16rd.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3mBWDp16rd.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3oAabmt2UZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3oAabmt2UZ.verified.txt index 0bcdb1ac69..8646de888d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3oAabmt2UZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/3oAabmt2UZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/4qxtVFqAJk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/4qxtVFqAJk.verified.txt index ea6d05cdbd..25c4097137 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/4qxtVFqAJk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/4qxtVFqAJk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/6HeO7LLgVh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/6HeO7LLgVh.verified.txt index c080ed6b16..b39e89be2d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/6HeO7LLgVh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/6HeO7LLgVh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/6xsKtx6pBG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/6xsKtx6pBG.verified.txt index 6f028f0b04..388dc5b5a5 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/6xsKtx6pBG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/6xsKtx6pBG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/8243ZMXNu5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/8243ZMXNu5.verified.txt index 96cca162ee..b214491e6d 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/8243ZMXNu5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/8243ZMXNu5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/90qAmH8XZh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/90qAmH8XZh.verified.txt index 82cf5ff68c..708fb3430c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/90qAmH8XZh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/90qAmH8XZh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/9tI1cnGakf.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/9tI1cnGakf.verified.txt index bfd0a45ee3..8749ccf484 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/9tI1cnGakf.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/9tI1cnGakf.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/A3LDARdFrZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/A3LDARdFrZ.verified.txt index 889050ed1d..1fbf8e6419 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/A3LDARdFrZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/A3LDARdFrZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/AGUOBcbY4A.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/AGUOBcbY4A.verified.txt index 2f6dfd32d9..dce8706a19 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/AGUOBcbY4A.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/AGUOBcbY4A.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/BCDkkorwLD.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/BCDkkorwLD.verified.txt index 3f9f9ea20c..89d2e2a1f3 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/BCDkkorwLD.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/BCDkkorwLD.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/BU0UUvzzuK.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/BU0UUvzzuK.verified.txt index 9892d3d3ab..794342d10e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/BU0UUvzzuK.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/BU0UUvzzuK.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/GAiFkQgtr9.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/GAiFkQgtr9.verified.txt index b6b05c3414..3a03807981 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/GAiFkQgtr9.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/GAiFkQgtr9.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/GbsChMfTbx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/GbsChMfTbx.verified.txt index fc4c674fff..500763cea1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/GbsChMfTbx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/GbsChMfTbx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/HyJgcfbHDZ.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/HyJgcfbHDZ.verified.txt index 72d42d1275..fc8e08cd97 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/HyJgcfbHDZ.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/HyJgcfbHDZ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/NA3ZnOKVDG.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/NA3ZnOKVDG.verified.txt index 0e8328fbba..b63d4e5d51 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/NA3ZnOKVDG.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/NA3ZnOKVDG.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/QFbd4pSPuE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/QFbd4pSPuE.verified.txt index f8495cae7a..760acd5427 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/QFbd4pSPuE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/QFbd4pSPuE.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/QXgcj72buY.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/QXgcj72buY.verified.txt index f6eea5c6da..e174990c99 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/QXgcj72buY.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/QXgcj72buY.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/R1tSxHqFWR.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/R1tSxHqFWR.verified.txt index 17cd6e84d7..6241e66b2b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/R1tSxHqFWR.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/R1tSxHqFWR.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/RSvHJzWcVx.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/RSvHJzWcVx.verified.txt index 2c214d933b..1e6cce7720 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/RSvHJzWcVx.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/RSvHJzWcVx.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/Thad6nEDD5.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/Thad6nEDD5.verified.txt index 69a845d337..4ff31f3265 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/Thad6nEDD5.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/Thad6nEDD5.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/TxGznMqzl8.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/TxGznMqzl8.verified.txt index b43b9e945d..be973115cd 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/TxGznMqzl8.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/TxGznMqzl8.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/Uhx1npmK9K.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/Uhx1npmK9K.verified.txt index b333951429..92650a3de1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/Uhx1npmK9K.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/Uhx1npmK9K.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/WMVLzBfTuM.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/WMVLzBfTuM.verified.txt index 385b997557..18b3184a19 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/WMVLzBfTuM.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/WMVLzBfTuM.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/WvGMnz5BEv.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/WvGMnz5BEv.verified.txt index f3610d6671..9d1837238c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/WvGMnz5BEv.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/WvGMnz5BEv.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YLETiC8egS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YLETiC8egS.verified.txt index 25ba489538..9be42cce73 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YLETiC8egS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YLETiC8egS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConvertershort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YQ4C8lGTTp.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YQ4C8lGTTp.verified.txt index e538ae7565..f26faf0da4 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YQ4C8lGTTp.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YQ4C8lGTTp.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YmajZMirSq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YmajZMirSq.verified.txt index 794886d960..d5eb61149c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YmajZMirSq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/YmajZMirSq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/a5oBj4NMck.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/a5oBj4NMck.verified.txt index d4c507c9a4..0d1520360b 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/a5oBj4NMck.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/a5oBj4NMck.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/bXddhCA2bk.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/bXddhCA2bk.verified.txt index 8dfb84872b..9ef5a920d1 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/bXddhCA2bk.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/bXddhCA2bk.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ezHOpJ7fUj.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ezHOpJ7fUj.verified.txt index 7a74e9ae54..a6832d6256 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ezHOpJ7fUj.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ezHOpJ7fUj.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/f8GfgtBpEy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/f8GfgtBpEy.verified.txt index 6da58ef6c0..bbc9491676 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/f8GfgtBpEy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/f8GfgtBpEy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/fBsIsd9NEC.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/fBsIsd9NEC.verified.txt index 4b8a5a9f4e..5304aae3e8 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/fBsIsd9NEC.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/fBsIsd9NEC.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ftvGXa4dWE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ftvGXa4dWE.verified.txt index 09f47d68e5..33ed22ea43 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ftvGXa4dWE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ftvGXa4dWE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ga0wMsAonO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ga0wMsAonO.verified.txt index b5316e0f0e..04afa703ea 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ga0wMsAonO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ga0wMsAonO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/hjyaHa29Jz.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/hjyaHa29Jz.verified.txt index 94e8658518..7b54b302e6 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/hjyaHa29Jz.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/hjyaHa29Jz.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverter left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/iHYaBR6vwE.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/iHYaBR6vwE.verified.txt index 32a96dbbda..2350b707e0 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/iHYaBR6vwE.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/iHYaBR6vwE.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/k1zq0pGwsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/k1zq0pGwsL.verified.txt index cb48ac4b07..61fbc9914c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/k1zq0pGwsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/k1zq0pGwsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/l4e6XelAgq.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/l4e6XelAgq.verified.txt index e3fb62b7fb..c2083701bf 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/l4e6XelAgq.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/l4e6XelAgq.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/nweFjpXFsL.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/nweFjpXFsL.verified.txt index cb37178598..44dc200399 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/nweFjpXFsL.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/nweFjpXFsL.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/oQTi0amgPS.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/oQTi0amgPS.verified.txt index 182a1b57a3..cd66a7e0cb 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/oQTi0amgPS.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/oQTi0amgPS.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ono9JkTnAN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ono9JkTnAN.verified.txt index aca297cd6f..0f7ea61185 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ono9JkTnAN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/ono9JkTnAN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterdecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/pZUfYns8zh.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/pZUfYns8zh.verified.txt index 4123a26039..338d8db772 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/pZUfYns8zh.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/pZUfYns8zh.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/puxvvYTSLO.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/puxvvYTSLO.verified.txt index 542451884c..068ddab8ab 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/puxvvYTSLO.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/puxvvYTSLO.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/qXtlb4zWul.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/qXtlb4zWul.verified.txt index 2258af8707..c1b2412410 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/qXtlb4zWul.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/qXtlb4zWul.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring && Equals((internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/rjKVwCkFkr.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/rjKVwCkFkr.verified.txt index 788794440e..30e8cb6d9f 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/rjKVwCkFkr.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/rjKVwCkFkr.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/s7fJpcky7C.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/s7fJpcky7C.verified.txt index c28b39a083..20c0252154 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/s7fJpcky7C.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/s7fJpcky7C.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/u8OrI8K7dy.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/u8OrI8K7dy.verified.txt index 0917c66857..cbadae708e 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/u8OrI8K7dy.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/u8OrI8K7dy.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/uKnQqNmYCb.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/uKnQqNmYCb.verified.txt index 7ba55de75f..6c0e308f4c 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/uKnQqNmYCb.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/uKnQqNmYCb.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/uKxa9dnwxN.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/uKxa9dnwxN.verified.txt index 000f0ed41e..99f83011fa 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/uKxa9dnwxN.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/uKxa9dnwxN.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat && Equals((internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/xrqw8zdbit.verified.txt b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/xrqw8zdbit.verified.txt index d9092f0563..5985d8305a 100644 --- a/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/xrqw8zdbit.verified.txt +++ b/tests/SnapshotTests/GenerationPermutations/snapshots/snap-v8.0/xrqw8zdbit.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint && Equals((public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structConversions_NewtonsoftJson___Conversions_SystemTextJson___Conversions_EfCoreValueConverter___Conversions_DapperTypeHandler___Conversions_LinqToDbValueConverterint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/0RqDCSNFog.verified.txt index 42b880a84a..b4dab7711d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/8VXB2Ayw8Q.verified.txt index 197867649b..7d0316eee4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/AjA4jZWDKX.verified.txt index 18693f4262..a891dbd8bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/B9CfOvgNmu.verified.txt index 44b1e84839..18c52c6c19 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/IsdKHmH8ZO.verified.txt index ffbb575d8d..66e801b621 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/KdK6TTDQpk.verified.txt index fdcffb5073..1a26352f73 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/NUHROXiOt9.verified.txt index b1884fc458..c16f6b56a8 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/PxEFTla44K.verified.txt index 2ca410c932..67f4ebe138 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Q0INojqlts.verified.txt index ae1814428f..3d9370e565 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Qjb7OvpJGM.verified.txt index b3e90a74e1..7a3348d765 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Sg0yhUS3KF.verified.txt index 0f85badab4..a82619d9d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/SsGgNd5B8V.verified.txt index af716171fb..b965b27097 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Tw02GMGqV0.verified.txt index 8bc21fc520..4dc84d2424 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/VDByDf9irl.verified.txt index 428d962d02..05d528f39d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Wwl28QbOnP.verified.txt index 0e40b13d68..f1dd84ecf4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/XnTTtRBL3k.verified.txt index 1f2f0a8e75..393ed0f411 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/ZRJoAqVVvb.verified.txt index 932dfaeadc..2d09f67c9e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/ZaFOPIWhda.verified.txt index 18e3b9484d..1f690e7c17 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/dTwZEZeVhu.verified.txt index 825b25de43..fd4842b05f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/edowZi17Nt.verified.txt index 028167ac60..6bfe923191 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/fOa6Y3m3Eu.verified.txt index abad5c2fdd..6a52d0ebab 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/pB5AVMQH3t.verified.txt index cde50689a6..2888815c76 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/r5vLbt9RKW.verified.txt index 62dfb09b9b..78b108d3b5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/rfT15swE8e.verified.txt index b434a683aa..e48a508d30 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/smbplIhBkI.verified.txt index b945a66bed..84cac8cdb4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/v7qMYkQ7z4.verified.txt index 8d65613db7..bd1800bc7c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/xdXJVrpdqo.verified.txt index 5404382e3d..db3ece0379 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/y2FXDfXVGz.verified.txt index 1f5062c3d1..800e1d2d52 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1-fr/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/0RqDCSNFog.verified.txt index 42b880a84a..b4dab7711d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/8VXB2Ayw8Q.verified.txt index 197867649b..7d0316eee4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/AjA4jZWDKX.verified.txt index 18693f4262..a891dbd8bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/B9CfOvgNmu.verified.txt index 44b1e84839..18c52c6c19 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt index ba18fb0415..210590a457 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt @@ -232,7 +232,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt index 5603d02ea2..2c555c2458 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is BooleanThing && Equals((BooleanThing)obj); } - public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => Equals(left, right); + public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => left.Equals(right); public static global::System.Boolean operator !=(BooleanThing left, BooleanThing right) => !(left == right); public static global::System.Boolean operator ==(BooleanThing left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(BooleanThing left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/IsdKHmH8ZO.verified.txt index ffbb575d8d..66e801b621 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/KdK6TTDQpk.verified.txt index fdcffb5073..1a26352f73 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/NUHROXiOt9.verified.txt index b1884fc458..c16f6b56a8 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/PxEFTla44K.verified.txt index 2ca410c932..67f4ebe138 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Q0INojqlts.verified.txt index ae1814428f..3d9370e565 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Qjb7OvpJGM.verified.txt index b3e90a74e1..7a3348d765 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Sg0yhUS3KF.verified.txt index 0f85badab4..a82619d9d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/SsGgNd5B8V.verified.txt index af716171fb..b965b27097 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Tw02GMGqV0.verified.txt index 8bc21fc520..4dc84d2424 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/VDByDf9irl.verified.txt index 428d962d02..05d528f39d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Wwl28QbOnP.verified.txt index 0e40b13d68..f1dd84ecf4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/XnTTtRBL3k.verified.txt index 1f2f0a8e75..393ed0f411 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/ZRJoAqVVvb.verified.txt index 932dfaeadc..2d09f67c9e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/ZaFOPIWhda.verified.txt index 18e3b9484d..1f690e7c17 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/dTwZEZeVhu.verified.txt index 825b25de43..fd4842b05f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/edowZi17Nt.verified.txt index 028167ac60..6bfe923191 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/fOa6Y3m3Eu.verified.txt index abad5c2fdd..6a52d0ebab 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/pB5AVMQH3t.verified.txt index cde50689a6..2888815c76 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/r5vLbt9RKW.verified.txt index 62dfb09b9b..78b108d3b5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/rfT15swE8e.verified.txt index b434a683aa..e48a508d30 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/smbplIhBkI.verified.txt index b945a66bed..84cac8cdb4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/v7qMYkQ7z4.verified.txt index 8d65613db7..bd1800bc7c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/xdXJVrpdqo.verified.txt index 5404382e3d..db3ece0379 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/y2FXDfXVGz.verified.txt index 1f5062c3d1..800e1d2d52 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v3.1/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/0RqDCSNFog.verified.txt index abd144f189..e1b6abe127 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/8VXB2Ayw8Q.verified.txt index 09d2d8da52..aa6d1f5d8b 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/AjA4jZWDKX.verified.txt index 322fceabe4..6482804ae0 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/B9CfOvgNmu.verified.txt index 29d7c5c85e..9002bbefe9 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/IsdKHmH8ZO.verified.txt index 741a5430d8..371a78a26e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/KdK6TTDQpk.verified.txt index 3abf9313a0..a14ade222b 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/NUHROXiOt9.verified.txt index ecfc0a554c..f2b58b8481 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/PxEFTla44K.verified.txt index a21e9402ee..c93c573e05 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Q0INojqlts.verified.txt index ae1814428f..3d9370e565 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Qjb7OvpJGM.verified.txt index ede50de9ea..61fda18d76 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Sg0yhUS3KF.verified.txt index 0f85badab4..a82619d9d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/SsGgNd5B8V.verified.txt index f674fcf30e..d1c1a99c7a 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Tw02GMGqV0.verified.txt index c815d6105e..9d74b4ec6c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/VDByDf9irl.verified.txt index 428d962d02..05d528f39d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Wwl28QbOnP.verified.txt index 83417b1443..034bdffeb7 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/XnTTtRBL3k.verified.txt index 497d87cdb6..d5315a78a9 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/ZRJoAqVVvb.verified.txt index 932dfaeadc..2d09f67c9e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/ZaFOPIWhda.verified.txt index e51e78b0bc..be4d6ba5f0 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/dTwZEZeVhu.verified.txt index 1c7b9480db..8bc9d69f44 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/edowZi17Nt.verified.txt index f2310de402..c08a595858 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/fOa6Y3m3Eu.verified.txt index 9fabf7322d..7f73ac2069 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/pB5AVMQH3t.verified.txt index e538bd1696..15f16af8d5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/r5vLbt9RKW.verified.txt index 82bd047740..325b37fbad 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/rfT15swE8e.verified.txt index e7bc564465..00512a27d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/smbplIhBkI.verified.txt index 0cee3e4399..86643131ef 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/v7qMYkQ7z4.verified.txt index 9cc6887fb1..87d7c76675 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/xdXJVrpdqo.verified.txt index db3c386713..bdf7200543 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/y2FXDfXVGz.verified.txt index ec3c1160f9..b76fafb197 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1-fr/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/0RqDCSNFog.verified.txt index abd144f189..e1b6abe127 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/8VXB2Ayw8Q.verified.txt index 09d2d8da52..aa6d1f5d8b 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/AjA4jZWDKX.verified.txt index 322fceabe4..6482804ae0 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/B9CfOvgNmu.verified.txt index 29d7c5c85e..9002bbefe9 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt index c61c9f8afb..7afdd59b30 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt @@ -232,7 +232,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt index eb09154666..2cba625828 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is BooleanThing && Equals((BooleanThing)obj); } - public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => Equals(left, right); + public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => left.Equals(right); public static global::System.Boolean operator !=(BooleanThing left, BooleanThing right) => !(left == right); public static global::System.Boolean operator ==(BooleanThing left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(BooleanThing left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/IsdKHmH8ZO.verified.txt index 741a5430d8..371a78a26e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/KdK6TTDQpk.verified.txt index 3abf9313a0..a14ade222b 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/NUHROXiOt9.verified.txt index ecfc0a554c..f2b58b8481 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/PxEFTla44K.verified.txt index a21e9402ee..c93c573e05 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Q0INojqlts.verified.txt index ae1814428f..3d9370e565 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Qjb7OvpJGM.verified.txt index ede50de9ea..61fda18d76 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Sg0yhUS3KF.verified.txt index 0f85badab4..a82619d9d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/SsGgNd5B8V.verified.txt index f674fcf30e..d1c1a99c7a 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Tw02GMGqV0.verified.txt index c815d6105e..9d74b4ec6c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/VDByDf9irl.verified.txt index 428d962d02..05d528f39d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Wwl28QbOnP.verified.txt index 83417b1443..034bdffeb7 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/XnTTtRBL3k.verified.txt index 497d87cdb6..d5315a78a9 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/ZRJoAqVVvb.verified.txt index 932dfaeadc..2d09f67c9e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/ZaFOPIWhda.verified.txt index e51e78b0bc..be4d6ba5f0 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/dTwZEZeVhu.verified.txt index 1c7b9480db..8bc9d69f44 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/edowZi17Nt.verified.txt index f2310de402..c08a595858 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/fOa6Y3m3Eu.verified.txt index 9fabf7322d..7f73ac2069 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/pB5AVMQH3t.verified.txt index e538bd1696..15f16af8d5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/r5vLbt9RKW.verified.txt index 82bd047740..325b37fbad 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/rfT15swE8e.verified.txt index e7bc564465..00512a27d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/smbplIhBkI.verified.txt index 0cee3e4399..86643131ef 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/v7qMYkQ7z4.verified.txt index 9cc6887fb1..87d7c76675 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/xdXJVrpdqo.verified.txt index db3c386713..bdf7200543 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/y2FXDfXVGz.verified.txt index ec3c1160f9..b76fafb197 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.6.1/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/0RqDCSNFog.verified.txt index 215fd467d0..c2e2c2f373 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/8VXB2Ayw8Q.verified.txt index 6fd1bfe7e9..4644325735 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/AjA4jZWDKX.verified.txt index 322fceabe4..6482804ae0 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/B9CfOvgNmu.verified.txt index fd1ae52fe7..0f2aae1579 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/IsdKHmH8ZO.verified.txt index 365b1ca03b..baa8ccc199 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/KdK6TTDQpk.verified.txt index d80c9efdeb..8c98b4624c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/NUHROXiOt9.verified.txt index ae9d5fc301..e3ba1b9d3f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/PxEFTla44K.verified.txt index a21e9402ee..c93c573e05 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Q0INojqlts.verified.txt index ae1814428f..3d9370e565 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Qjb7OvpJGM.verified.txt index 0b64352d86..b4bffd1e6f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Sg0yhUS3KF.verified.txt index 0f85badab4..a82619d9d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/SsGgNd5B8V.verified.txt index beb77e16da..13b51c8834 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Tw02GMGqV0.verified.txt index c815d6105e..9d74b4ec6c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/VDByDf9irl.verified.txt index 428d962d02..05d528f39d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Wwl28QbOnP.verified.txt index 83417b1443..034bdffeb7 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/XnTTtRBL3k.verified.txt index a8a6aafec6..feffb8b46d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/ZRJoAqVVvb.verified.txt index 932dfaeadc..2d09f67c9e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/ZaFOPIWhda.verified.txt index 52eaacc0f0..53dc6e763e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/dTwZEZeVhu.verified.txt index e2620a74e9..b7d928428c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/edowZi17Nt.verified.txt index 83b271ba1f..98ba2fcc35 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/fOa6Y3m3Eu.verified.txt index d0e5f8b7e2..8ace73ed7f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/pB5AVMQH3t.verified.txt index 905bdc3004..f863a22386 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/r5vLbt9RKW.verified.txt index 7adeb49aca..dc8eea88ea 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/rfT15swE8e.verified.txt index 2efc891c08..4940553c04 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/smbplIhBkI.verified.txt index eab5796acf..7978c1073a 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/v7qMYkQ7z4.verified.txt index d763c1ac51..53fd49adb9 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/xdXJVrpdqo.verified.txt index 2f85f5519a..9f78a28189 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/y2FXDfXVGz.verified.txt index 8de1bec499..6ffd3f29f5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8-fr/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/0RqDCSNFog.verified.txt index 215fd467d0..c2e2c2f373 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/8VXB2Ayw8Q.verified.txt index 6fd1bfe7e9..4644325735 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/AjA4jZWDKX.verified.txt index 322fceabe4..6482804ae0 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/B9CfOvgNmu.verified.txt index fd1ae52fe7..0f2aae1579 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt index aec48ba276..b2ec68a313 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt @@ -232,7 +232,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt index eb09154666..2cba625828 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is BooleanThing && Equals((BooleanThing)obj); } - public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => Equals(left, right); + public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => left.Equals(right); public static global::System.Boolean operator !=(BooleanThing left, BooleanThing right) => !(left == right); public static global::System.Boolean operator ==(BooleanThing left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(BooleanThing left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/IsdKHmH8ZO.verified.txt index 365b1ca03b..baa8ccc199 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/KdK6TTDQpk.verified.txt index d80c9efdeb..8c98b4624c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/NUHROXiOt9.verified.txt index ae9d5fc301..e3ba1b9d3f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/PxEFTla44K.verified.txt index a21e9402ee..c93c573e05 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Q0INojqlts.verified.txt index ae1814428f..3d9370e565 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Qjb7OvpJGM.verified.txt index 0b64352d86..b4bffd1e6f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Sg0yhUS3KF.verified.txt index 0f85badab4..a82619d9d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/SsGgNd5B8V.verified.txt index beb77e16da..13b51c8834 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Tw02GMGqV0.verified.txt index c815d6105e..9d74b4ec6c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/VDByDf9irl.verified.txt index 428d962d02..05d528f39d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Wwl28QbOnP.verified.txt index 83417b1443..034bdffeb7 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/XnTTtRBL3k.verified.txt index a8a6aafec6..feffb8b46d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/ZRJoAqVVvb.verified.txt index 932dfaeadc..2d09f67c9e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/ZaFOPIWhda.verified.txt index 52eaacc0f0..53dc6e763e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/dTwZEZeVhu.verified.txt index e2620a74e9..b7d928428c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/edowZi17Nt.verified.txt index 83b271ba1f..98ba2fcc35 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/fOa6Y3m3Eu.verified.txt index d0e5f8b7e2..8ace73ed7f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/pB5AVMQH3t.verified.txt index 905bdc3004..f863a22386 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/r5vLbt9RKW.verified.txt index 7adeb49aca..dc8eea88ea 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/rfT15swE8e.verified.txt index 2efc891c08..4940553c04 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/smbplIhBkI.verified.txt index eab5796acf..7978c1073a 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/v7qMYkQ7z4.verified.txt index d763c1ac51..53fd49adb9 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/xdXJVrpdqo.verified.txt index 2f85f5519a..9f78a28189 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/y2FXDfXVGz.verified.txt index 8de1bec499..6ffd3f29f5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v4.8/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/0RqDCSNFog.verified.txt index 42b880a84a..b4dab7711d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/8VXB2Ayw8Q.verified.txt index 197867649b..7d0316eee4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/AjA4jZWDKX.verified.txt index 18693f4262..a891dbd8bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/B9CfOvgNmu.verified.txt index 44b1e84839..18c52c6c19 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/IsdKHmH8ZO.verified.txt index ffbb575d8d..66e801b621 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/KdK6TTDQpk.verified.txt index fdcffb5073..1a26352f73 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/NUHROXiOt9.verified.txt index b1884fc458..c16f6b56a8 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/PxEFTla44K.verified.txt index 2ca410c932..67f4ebe138 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Q0INojqlts.verified.txt index ae1814428f..3d9370e565 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Qjb7OvpJGM.verified.txt index b3e90a74e1..7a3348d765 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Sg0yhUS3KF.verified.txt index 0f85badab4..a82619d9d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/SsGgNd5B8V.verified.txt index af716171fb..b965b27097 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Tw02GMGqV0.verified.txt index 8bc21fc520..4dc84d2424 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/VDByDf9irl.verified.txt index 428d962d02..05d528f39d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Wwl28QbOnP.verified.txt index 0e40b13d68..f1dd84ecf4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/XnTTtRBL3k.verified.txt index 1f2f0a8e75..393ed0f411 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/ZRJoAqVVvb.verified.txt index 932dfaeadc..2d09f67c9e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/ZaFOPIWhda.verified.txt index 18e3b9484d..1f690e7c17 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/dTwZEZeVhu.verified.txt index 825b25de43..fd4842b05f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/edowZi17Nt.verified.txt index 028167ac60..6bfe923191 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/fOa6Y3m3Eu.verified.txt index abad5c2fdd..6a52d0ebab 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/pB5AVMQH3t.verified.txt index cde50689a6..2888815c76 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/r5vLbt9RKW.verified.txt index 62dfb09b9b..78b108d3b5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/rfT15swE8e.verified.txt index b434a683aa..e48a508d30 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/smbplIhBkI.verified.txt index b945a66bed..84cac8cdb4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/v7qMYkQ7z4.verified.txt index 8d65613db7..bd1800bc7c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/xdXJVrpdqo.verified.txt index 5404382e3d..db3ece0379 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/y2FXDfXVGz.verified.txt index 1f5062c3d1..800e1d2d52 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0-fr/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/0RqDCSNFog.verified.txt index 42b880a84a..b4dab7711d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/8VXB2Ayw8Q.verified.txt index 197867649b..7d0316eee4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/AjA4jZWDKX.verified.txt index 18693f4262..a891dbd8bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/B9CfOvgNmu.verified.txt index 44b1e84839..18c52c6c19 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt index ba18fb0415..210590a457 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt @@ -232,7 +232,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt index 5603d02ea2..2c555c2458 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is BooleanThing && Equals((BooleanThing)obj); } - public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => Equals(left, right); + public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => left.Equals(right); public static global::System.Boolean operator !=(BooleanThing left, BooleanThing right) => !(left == right); public static global::System.Boolean operator ==(BooleanThing left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(BooleanThing left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/IsdKHmH8ZO.verified.txt index ffbb575d8d..66e801b621 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/KdK6TTDQpk.verified.txt index fdcffb5073..1a26352f73 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/NUHROXiOt9.verified.txt index b1884fc458..c16f6b56a8 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/PxEFTla44K.verified.txt index 2ca410c932..67f4ebe138 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Q0INojqlts.verified.txt index ae1814428f..3d9370e565 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Qjb7OvpJGM.verified.txt index b3e90a74e1..7a3348d765 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Sg0yhUS3KF.verified.txt index 0f85badab4..a82619d9d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/SsGgNd5B8V.verified.txt index af716171fb..b965b27097 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Tw02GMGqV0.verified.txt index 8bc21fc520..4dc84d2424 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/VDByDf9irl.verified.txt index 428d962d02..05d528f39d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Wwl28QbOnP.verified.txt index 0e40b13d68..f1dd84ecf4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/XnTTtRBL3k.verified.txt index 1f2f0a8e75..393ed0f411 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/ZRJoAqVVvb.verified.txt index 932dfaeadc..2d09f67c9e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/ZaFOPIWhda.verified.txt index 18e3b9484d..1f690e7c17 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/dTwZEZeVhu.verified.txt index 825b25de43..fd4842b05f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/edowZi17Nt.verified.txt index 028167ac60..6bfe923191 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/fOa6Y3m3Eu.verified.txt index abad5c2fdd..6a52d0ebab 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/pB5AVMQH3t.verified.txt index cde50689a6..2888815c76 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/r5vLbt9RKW.verified.txt index 62dfb09b9b..78b108d3b5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/rfT15swE8e.verified.txt index b434a683aa..e48a508d30 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/smbplIhBkI.verified.txt index b945a66bed..84cac8cdb4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/v7qMYkQ7z4.verified.txt index 8d65613db7..bd1800bc7c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/xdXJVrpdqo.verified.txt index 5404382e3d..db3ece0379 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/y2FXDfXVGz.verified.txt index 1f5062c3d1..800e1d2d52 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v5.0/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/0RqDCSNFog.verified.txt index 42b880a84a..b4dab7711d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/8VXB2Ayw8Q.verified.txt index 197867649b..7d0316eee4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/AjA4jZWDKX.verified.txt index 18693f4262..a891dbd8bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/B9CfOvgNmu.verified.txt index 44b1e84839..18c52c6c19 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/IsdKHmH8ZO.verified.txt index ffbb575d8d..66e801b621 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/KdK6TTDQpk.verified.txt index fdcffb5073..1a26352f73 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/NUHROXiOt9.verified.txt index b1884fc458..c16f6b56a8 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/PxEFTla44K.verified.txt index 2ca410c932..67f4ebe138 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Q0INojqlts.verified.txt index ae1814428f..3d9370e565 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Qjb7OvpJGM.verified.txt index b3e90a74e1..7a3348d765 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Sg0yhUS3KF.verified.txt index 0f85badab4..a82619d9d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/SsGgNd5B8V.verified.txt index af716171fb..b965b27097 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Tw02GMGqV0.verified.txt index 8bc21fc520..4dc84d2424 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/VDByDf9irl.verified.txt index 428d962d02..05d528f39d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Wwl28QbOnP.verified.txt index 0e40b13d68..f1dd84ecf4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/XnTTtRBL3k.verified.txt index 1f2f0a8e75..393ed0f411 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/ZRJoAqVVvb.verified.txt index 932dfaeadc..2d09f67c9e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/ZaFOPIWhda.verified.txt index 18e3b9484d..1f690e7c17 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/dTwZEZeVhu.verified.txt index 825b25de43..fd4842b05f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/edowZi17Nt.verified.txt index 028167ac60..6bfe923191 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/fOa6Y3m3Eu.verified.txt index abad5c2fdd..6a52d0ebab 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/pB5AVMQH3t.verified.txt index cde50689a6..2888815c76 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/r5vLbt9RKW.verified.txt index 62dfb09b9b..78b108d3b5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/rfT15swE8e.verified.txt index b434a683aa..e48a508d30 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/smbplIhBkI.verified.txt index b945a66bed..84cac8cdb4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/v7qMYkQ7z4.verified.txt index 8d65613db7..bd1800bc7c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/xdXJVrpdqo.verified.txt index 5404382e3d..db3ece0379 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/y2FXDfXVGz.verified.txt index 1f5062c3d1..800e1d2d52 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0-fr/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/0RqDCSNFog.verified.txt index 42b880a84a..b4dab7711d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/8VXB2Ayw8Q.verified.txt index 197867649b..7d0316eee4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/AjA4jZWDKX.verified.txt index 18693f4262..a891dbd8bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/B9CfOvgNmu.verified.txt index 44b1e84839..18c52c6c19 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt index ba18fb0415..210590a457 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt @@ -232,7 +232,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt index 5603d02ea2..2c555c2458 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is BooleanThing && Equals((BooleanThing)obj); } - public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => Equals(left, right); + public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => left.Equals(right); public static global::System.Boolean operator !=(BooleanThing left, BooleanThing right) => !(left == right); public static global::System.Boolean operator ==(BooleanThing left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(BooleanThing left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/IsdKHmH8ZO.verified.txt index ffbb575d8d..66e801b621 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/KdK6TTDQpk.verified.txt index fdcffb5073..1a26352f73 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/NUHROXiOt9.verified.txt index b1884fc458..c16f6b56a8 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/PxEFTla44K.verified.txt index 2ca410c932..67f4ebe138 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Q0INojqlts.verified.txt index ae1814428f..3d9370e565 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Qjb7OvpJGM.verified.txt index b3e90a74e1..7a3348d765 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Sg0yhUS3KF.verified.txt index 0f85badab4..a82619d9d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/SsGgNd5B8V.verified.txt index af716171fb..b965b27097 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Tw02GMGqV0.verified.txt index 8bc21fc520..4dc84d2424 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/VDByDf9irl.verified.txt index 428d962d02..05d528f39d 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Wwl28QbOnP.verified.txt index 0e40b13d68..f1dd84ecf4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/XnTTtRBL3k.verified.txt index 1f2f0a8e75..393ed0f411 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/ZRJoAqVVvb.verified.txt index 932dfaeadc..2d09f67c9e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/ZaFOPIWhda.verified.txt index 18e3b9484d..1f690e7c17 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/dTwZEZeVhu.verified.txt index 825b25de43..fd4842b05f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/edowZi17Nt.verified.txt index 028167ac60..6bfe923191 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/fOa6Y3m3Eu.verified.txt index abad5c2fdd..6a52d0ebab 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/pB5AVMQH3t.verified.txt index cde50689a6..2888815c76 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/r5vLbt9RKW.verified.txt index 62dfb09b9b..78b108d3b5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/rfT15swE8e.verified.txt index b434a683aa..e48a508d30 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/smbplIhBkI.verified.txt index b945a66bed..84cac8cdb4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/v7qMYkQ7z4.verified.txt index 8d65613db7..bd1800bc7c 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/xdXJVrpdqo.verified.txt index 5404382e3d..db3ece0379 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/y2FXDfXVGz.verified.txt index 1f5062c3d1..800e1d2d52 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v6.0/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/0RqDCSNFog.verified.txt index 90833fcc3b..ad2ae9cb18 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/8VXB2Ayw8Q.verified.txt index 17e99ef22d..59e2c41ea3 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/AjA4jZWDKX.verified.txt index 18693f4262..a891dbd8bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/B9CfOvgNmu.verified.txt index ae7da26c0e..52a7cc8851 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/IsdKHmH8ZO.verified.txt index 9a23dc1eba..61cf0e45ff 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/KdK6TTDQpk.verified.txt index 2128f8a0fe..5fe9fce078 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/NUHROXiOt9.verified.txt index 8c2352c657..e2401ecfa4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/PxEFTla44K.verified.txt index 2ca410c932..67f4ebe138 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Q0INojqlts.verified.txt index e302a00696..b37caa7a63 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Qjb7OvpJGM.verified.txt index 747ae50a82..2bb53517d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Sg0yhUS3KF.verified.txt index 31e54abab3..5b26bd07da 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/SsGgNd5B8V.verified.txt index 807f35f8a0..128d5d9168 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Tw02GMGqV0.verified.txt index 8bc21fc520..4dc84d2424 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/VDByDf9irl.verified.txt index 935f2ae456..eec96abda5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Wwl28QbOnP.verified.txt index 0e40b13d68..f1dd84ecf4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/XnTTtRBL3k.verified.txt index 47bf37e30f..4a1a5ca5cc 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/ZRJoAqVVvb.verified.txt index 7ddc69dd6b..41d1c3946e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/ZaFOPIWhda.verified.txt index 14259e0b51..7e436b4cde 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/dTwZEZeVhu.verified.txt index 5b790cf333..e5c9000704 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/edowZi17Nt.verified.txt index fc2dc1349d..6e7f3be2b2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/fOa6Y3m3Eu.verified.txt index 8144fc9f0f..92900e12c1 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/pB5AVMQH3t.verified.txt index c0c5cfcdc3..3f7c0bdce6 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/r5vLbt9RKW.verified.txt index 51404649d0..dfab538d28 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/rfT15swE8e.verified.txt index cb90f19a6c..d9fc3e2dab 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/smbplIhBkI.verified.txt index 4c60475530..6fd6c06713 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/v7qMYkQ7z4.verified.txt index 077489750c..0fd6be2ccb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/xdXJVrpdqo.verified.txt index d52af3ecfc..fb586d15f0 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/y2FXDfXVGz.verified.txt index 4edfe0f48d..209ca902ad 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0-fr/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/0RqDCSNFog.verified.txt index 90833fcc3b..ad2ae9cb18 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/8VXB2Ayw8Q.verified.txt index 17e99ef22d..59e2c41ea3 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/AjA4jZWDKX.verified.txt index 18693f4262..a891dbd8bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/B9CfOvgNmu.verified.txt index ae7da26c0e..52a7cc8851 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt index c175b0ce5b..beb8f805e6 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt @@ -232,7 +232,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt index 5603d02ea2..2c555c2458 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is BooleanThing && Equals((BooleanThing)obj); } - public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => Equals(left, right); + public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => left.Equals(right); public static global::System.Boolean operator !=(BooleanThing left, BooleanThing right) => !(left == right); public static global::System.Boolean operator ==(BooleanThing left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(BooleanThing left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/IsdKHmH8ZO.verified.txt index 9a23dc1eba..61cf0e45ff 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/KdK6TTDQpk.verified.txt index 2128f8a0fe..5fe9fce078 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/NUHROXiOt9.verified.txt index 8c2352c657..e2401ecfa4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/PxEFTla44K.verified.txt index 2ca410c932..67f4ebe138 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Q0INojqlts.verified.txt index e302a00696..b37caa7a63 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Qjb7OvpJGM.verified.txt index 747ae50a82..2bb53517d2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Sg0yhUS3KF.verified.txt index 31e54abab3..5b26bd07da 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/SsGgNd5B8V.verified.txt index 807f35f8a0..128d5d9168 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Tw02GMGqV0.verified.txt index 8bc21fc520..4dc84d2424 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/VDByDf9irl.verified.txt index 935f2ae456..eec96abda5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Wwl28QbOnP.verified.txt index 0e40b13d68..f1dd84ecf4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/XnTTtRBL3k.verified.txt index 47bf37e30f..4a1a5ca5cc 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/ZRJoAqVVvb.verified.txt index 7ddc69dd6b..41d1c3946e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/ZaFOPIWhda.verified.txt index 14259e0b51..7e436b4cde 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/dTwZEZeVhu.verified.txt index 5b790cf333..e5c9000704 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/edowZi17Nt.verified.txt index fc2dc1349d..6e7f3be2b2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/fOa6Y3m3Eu.verified.txt index 8144fc9f0f..92900e12c1 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/pB5AVMQH3t.verified.txt index c0c5cfcdc3..3f7c0bdce6 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/r5vLbt9RKW.verified.txt index 51404649d0..dfab538d28 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/rfT15swE8e.verified.txt index cb90f19a6c..d9fc3e2dab 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/smbplIhBkI.verified.txt index 4c60475530..6fd6c06713 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/v7qMYkQ7z4.verified.txt index 077489750c..0fd6be2ccb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/xdXJVrpdqo.verified.txt index d52af3ecfc..fb586d15f0 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/y2FXDfXVGz.verified.txt index 4edfe0f48d..209ca902ad 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v7.0/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/0RqDCSNFog.verified.txt index 42f7af8e09..c4049bd863 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/8VXB2Ayw8Q.verified.txt index 906d2d821f..116444fb43 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/AjA4jZWDKX.verified.txt index 18693f4262..a891dbd8bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/B9CfOvgNmu.verified.txt index c067b1ee3a..9cd53c89af 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/IsdKHmH8ZO.verified.txt index 222199ce21..ff9674858b 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/KdK6TTDQpk.verified.txt index 0e5a81b36d..a4394c3636 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/NUHROXiOt9.verified.txt index 3226bc365c..3e1f706a12 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/PxEFTla44K.verified.txt index 2ca410c932..67f4ebe138 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Q0INojqlts.verified.txt index e302a00696..b37caa7a63 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Qjb7OvpJGM.verified.txt index 6aee53558a..00690a1058 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Sg0yhUS3KF.verified.txt index 31e54abab3..5b26bd07da 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/SsGgNd5B8V.verified.txt index 28bf92189b..898d57a6bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Tw02GMGqV0.verified.txt index 8bc21fc520..4dc84d2424 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/VDByDf9irl.verified.txt index 935f2ae456..eec96abda5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Wwl28QbOnP.verified.txt index 0e40b13d68..f1dd84ecf4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/XnTTtRBL3k.verified.txt index 2be27482e4..1cec1d580a 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/ZRJoAqVVvb.verified.txt index 7ddc69dd6b..41d1c3946e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/ZaFOPIWhda.verified.txt index d9f314a3e2..8aa4df3537 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/dTwZEZeVhu.verified.txt index 382990d0b2..af7ca6a24b 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/edowZi17Nt.verified.txt index b93a2b7759..5b74406a23 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/fOa6Y3m3Eu.verified.txt index 05666e2fd6..baadb2cb8f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/pB5AVMQH3t.verified.txt index 77ca35f187..d76d56d21a 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/r5vLbt9RKW.verified.txt index 102a0cf478..4aad3272ea 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/rfT15swE8e.verified.txt index 25ecb5770f..7527a165f1 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/smbplIhBkI.verified.txt index 94430caa6e..1845f38436 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/v7qMYkQ7z4.verified.txt index 06ec0a3d83..e63a220221 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/xdXJVrpdqo.verified.txt index 5c45227e7b..8773415f1e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/y2FXDfXVGz.verified.txt index 9a4d9489f7..faa5a9c961 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0-fr/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/0RqDCSNFog.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/0RqDCSNFog.verified.txt index 42f7af8e09..c4049bd863 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/0RqDCSNFog.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/0RqDCSNFog.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structint && Equals((public_partial_structint)obj); } - public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structint left, public_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structint left, public_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/8VXB2Ayw8Q.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/8VXB2Ayw8Q.verified.txt index 906d2d821f..116444fb43 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/8VXB2Ayw8Q.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/8VXB2Ayw8Q.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structlong && Equals((internal_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structlong left, internal_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structlong left, internal_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/AjA4jZWDKX.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/AjA4jZWDKX.verified.txt index 18693f4262..a891dbd8bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/AjA4jZWDKX.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/AjA4jZWDKX.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structchar && Equals((internal_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structchar left, internal_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structchar left, internal_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/B9CfOvgNmu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/B9CfOvgNmu.verified.txt index c067b1ee3a..9cd53c89af 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/B9CfOvgNmu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/B9CfOvgNmu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structint && Equals((internal_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, internal_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt index 334aa6ca47..3ba9bdeec2 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/InstanceFieldGenerationTests.Instance_names_can_have_reserved_keywords.verified.txt @@ -232,7 +232,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt index 5603d02ea2..2c555c2458 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/InstanceFieldGenerationTests.Instances_can_be_booleans.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is BooleanThing && Equals((BooleanThing)obj); } - public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => Equals(left, right); + public static global::System.Boolean operator ==(BooleanThing left, BooleanThing right) => left.Equals(right); public static global::System.Boolean operator !=(BooleanThing left, BooleanThing right) => !(left == right); public static global::System.Boolean operator ==(BooleanThing left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(BooleanThing left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/IsdKHmH8ZO.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/IsdKHmH8ZO.verified.txt index 222199ce21..ff9674858b 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/IsdKHmH8ZO.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/IsdKHmH8ZO.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structdouble && Equals((internal_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, internal_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/KdK6TTDQpk.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/KdK6TTDQpk.verified.txt index 0e5a81b36d..a4394c3636 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/KdK6TTDQpk.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/KdK6TTDQpk.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structbyte && Equals((internal_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structbyte left, internal_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structbyte left, internal_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/NUHROXiOt9.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/NUHROXiOt9.verified.txt index 3226bc365c..3e1f706a12 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/NUHROXiOt9.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/NUHROXiOt9.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structbyte && Equals((public_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, public_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/PxEFTla44K.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/PxEFTla44K.verified.txt index 2ca410c932..67f4ebe138 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/PxEFTla44K.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/PxEFTla44K.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structchar && Equals((internal_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, internal_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Q0INojqlts.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Q0INojqlts.verified.txt index e302a00696..b37caa7a63 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Q0INojqlts.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Q0INojqlts.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structstring && Equals((internal_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structstring left, internal_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structstring left, internal_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Qjb7OvpJGM.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Qjb7OvpJGM.verified.txt index 6aee53558a..00690a1058 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Qjb7OvpJGM.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Qjb7OvpJGM.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structint && Equals((public_readonly_partial_structint)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structint left, public_readonly_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, public_readonly_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Sg0yhUS3KF.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Sg0yhUS3KF.verified.txt index 31e54abab3..5b26bd07da 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Sg0yhUS3KF.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Sg0yhUS3KF.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structstring && Equals((public_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structstring left, public_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structstring left, public_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/SsGgNd5B8V.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/SsGgNd5B8V.verified.txt index 28bf92189b..898d57a6bb 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/SsGgNd5B8V.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/SsGgNd5B8V.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structdouble && Equals((public_readonly_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, public_readonly_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Tw02GMGqV0.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Tw02GMGqV0.verified.txt index 8bc21fc520..4dc84d2424 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Tw02GMGqV0.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Tw02GMGqV0.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structchar && Equals((public_readonly_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, public_readonly_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/VDByDf9irl.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/VDByDf9irl.verified.txt index 935f2ae456..eec96abda5 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/VDByDf9irl.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/VDByDf9irl.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structstring && Equals((internal_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, internal_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Wwl28QbOnP.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Wwl28QbOnP.verified.txt index 0e40b13d68..f1dd84ecf4 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Wwl28QbOnP.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/Wwl28QbOnP.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structchar && Equals((public_partial_structchar)obj); } - public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structchar left, public_partial_structchar right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structchar left, public_partial_structchar right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/XnTTtRBL3k.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/XnTTtRBL3k.verified.txt index 2be27482e4..1cec1d580a 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/XnTTtRBL3k.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/XnTTtRBL3k.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structfloat && Equals((public_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, public_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/ZRJoAqVVvb.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/ZRJoAqVVvb.verified.txt index 7ddc69dd6b..41d1c3946e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/ZRJoAqVVvb.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/ZRJoAqVVvb.verified.txt @@ -201,7 +201,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structstring && Equals((public_readonly_partial_structstring)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, public_readonly_partial_structstring right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/ZaFOPIWhda.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/ZaFOPIWhda.verified.txt index d9f314a3e2..8aa4df3537 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/ZaFOPIWhda.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/ZaFOPIWhda.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structfloat && Equals((internal_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structfloat left, internal_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structfloat left, internal_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/dTwZEZeVhu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/dTwZEZeVhu.verified.txt index 382990d0b2..af7ca6a24b 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/dTwZEZeVhu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/dTwZEZeVhu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structint && Equals((internal_partial_structint)obj); } - public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structint left, internal_partial_structint right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structint left, internal_partial_structint right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/edowZi17Nt.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/edowZi17Nt.verified.txt index b93a2b7759..5b74406a23 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/edowZi17Nt.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/edowZi17Nt.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_partial_structdouble && Equals((internal_partial_structdouble)obj); } - public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_partial_structdouble left, internal_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(internal_partial_structdouble left, internal_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(internal_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/fOa6Y3m3Eu.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/fOa6Y3m3Eu.verified.txt index 05666e2fd6..baadb2cb8f 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/fOa6Y3m3Eu.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/fOa6Y3m3Eu.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structlong && Equals((internal_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, internal_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/pB5AVMQH3t.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/pB5AVMQH3t.verified.txt index 77ca35f187..d76d56d21a 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/pB5AVMQH3t.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/pB5AVMQH3t.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structdouble && Equals((public_partial_structdouble)obj); } - public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structdouble left, public_partial_structdouble right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structdouble left, public_partial_structdouble right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structdouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structdouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/r5vLbt9RKW.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/r5vLbt9RKW.verified.txt index 102a0cf478..4aad3272ea 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/r5vLbt9RKW.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/r5vLbt9RKW.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structbyte && Equals((internal_readonly_partial_structbyte)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, internal_readonly_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/rfT15swE8e.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/rfT15swE8e.verified.txt index 25ecb5770f..7527a165f1 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/rfT15swE8e.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/rfT15swE8e.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is internal_readonly_partial_structfloat && Equals((internal_readonly_partial_structfloat)obj); } - public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, internal_readonly_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(internal_readonly_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(internal_readonly_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/smbplIhBkI.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/smbplIhBkI.verified.txt index 94430caa6e..1845f38436 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/smbplIhBkI.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/smbplIhBkI.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structbyte && Equals((public_partial_structbyte)obj); } - public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structbyte left, public_partial_structbyte right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structbyte left, public_partial_structbyte right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/v7qMYkQ7z4.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/v7qMYkQ7z4.verified.txt index 06ec0a3d83..e63a220221 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/v7qMYkQ7z4.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/v7qMYkQ7z4.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structfloat && Equals((public_partial_structfloat)obj); } - public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structfloat left, public_partial_structfloat right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structfloat left, public_partial_structfloat right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/xdXJVrpdqo.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/xdXJVrpdqo.verified.txt index 5c45227e7b..8773415f1e 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/xdXJVrpdqo.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/xdXJVrpdqo.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_partial_structlong && Equals((public_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_partial_structlong left, public_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_partial_structlong left, public_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/y2FXDfXVGz.verified.txt b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/y2FXDfXVGz.verified.txt index 9a4d9489f7..faa5a9c961 100644 --- a/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/y2FXDfXVGz.verified.txt +++ b/tests/SnapshotTests/InstanceFields/snapshots/snap-v8.0/y2FXDfXVGz.verified.txt @@ -196,7 +196,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is public_readonly_partial_structlong && Equals((public_readonly_partial_structlong)obj); } - public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => Equals(left, right); + public static global::System.Boolean operator ==(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => left.Equals(right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, public_readonly_partial_structlong right) => !(left == right); public static global::System.Boolean operator ==(public_readonly_partial_structlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(public_readonly_partial_structlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_does_not_write_diagnostics_if___ProduceDiagnostics_class_is_not_present_anywhere.verified.txt b/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_does_not_write_diagnostics_if___ProduceDiagnostics_class_is_not_present_anywhere.verified.txt index 8463da5589..bdeeda9072 100644 --- a/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_does_not_write_diagnostics_if___ProduceDiagnostics_class_is_not_present_anywhere.verified.txt +++ b/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_does_not_write_diagnostics_if___ProduceDiagnostics_class_is_not_present_anywhere.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_does_not_write_diagnostics_if___ProduceDiagnostics_class_is_not_present_in_the_Vogen_namespace.verified.txt b/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_does_not_write_diagnostics_if___ProduceDiagnostics_class_is_not_present_in_the_Vogen_namespace.verified.txt index 00aacf058a..af4f388c95 100644 --- a/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_does_not_write_diagnostics_if___ProduceDiagnostics_class_is_not_present_in_the_Vogen_namespace.verified.txt +++ b/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_does_not_write_diagnostics_if___ProduceDiagnostics_class_is_not_present_in_the_Vogen_namespace.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_writes_diagnostics_if___ProduceDiagnostics_class_is_present_in_the_Vogen_namespace.verified.txt b/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_writes_diagnostics_if___ProduceDiagnostics_class_is_present_in_the_Vogen_namespace.verified.txt index 3eb0a67ca2..66ce4a647d 100644 --- a/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_writes_diagnostics_if___ProduceDiagnostics_class_is_present_in_the_Vogen_namespace.verified.txt +++ b/tests/SnapshotTests/InternalDiagnostics/snapshots/snap-v8.0/InternalDiagnosticsTests.It_writes_diagnostics_if___ProduceDiagnostics_class_is_present_in_the_Vogen_namespace.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Escapes_wrapper_name.verified.txt b/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Escapes_wrapper_name.verified.txt index e98201edaa..eb9213ba18 100644 --- a/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Escapes_wrapper_name.verified.txt +++ b/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Escapes_wrapper_name.verified.txt @@ -260,7 +260,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is @class && Equals((@class)obj); } - public static global::System.Boolean operator ==(@class left, @class right) => Equals(left, right); + public static global::System.Boolean operator ==(@class left, @class right) => left.Equals(right); public static global::System.Boolean operator !=(@class left, @class right) => !(left == right); public static global::System.Boolean operator ==(@class left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(@class left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Generates_if_global_attribute_set.verified.txt b/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Generates_if_global_attribute_set.verified.txt index 9d85d6c1e9..2a625d163c 100644 --- a/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Generates_if_global_attribute_set.verified.txt +++ b/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Generates_if_global_attribute_set.verified.txt @@ -328,7 +328,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Age && Equals((Age)obj); } - public static global::System.Boolean operator ==(Age left, Age right) => Equals(left, right); + public static global::System.Boolean operator ==(Age left, Age right) => left.Equals(right); public static global::System.Boolean operator !=(Age left, Age right) => !(left == right); public static global::System.Boolean operator ==(Age left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Age left, System.Int32 right) => !Equals(left.Value, right); @@ -841,7 +841,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Name && Equals((Name)obj); } - public static global::System.Boolean operator ==(Name left, Name right) => Equals(left, right); + public static global::System.Boolean operator ==(Name left, Name right) => left.Equals(right); public static global::System.Boolean operator !=(Name left, Name right) => !(left == right); public static global::System.Boolean operator ==(Name left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Name left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Generates_if_local_attribute_set.verified.txt b/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Generates_if_local_attribute_set.verified.txt index 9d85d6c1e9..2a625d163c 100644 --- a/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Generates_if_local_attribute_set.verified.txt +++ b/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Generates_if_local_attribute_set.verified.txt @@ -328,7 +328,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Age && Equals((Age)obj); } - public static global::System.Boolean operator ==(Age left, Age right) => Equals(left, right); + public static global::System.Boolean operator ==(Age left, Age right) => left.Equals(right); public static global::System.Boolean operator !=(Age left, Age right) => !(left == right); public static global::System.Boolean operator ==(Age left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Age left, System.Int32 right) => !Equals(left.Value, right); @@ -841,7 +841,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Name && Equals((Name)obj); } - public static global::System.Boolean operator ==(Name left, Name right) => Equals(left, right); + public static global::System.Boolean operator ==(Name left, Name right) => left.Equals(right); public static global::System.Boolean operator !=(Name left, Name right) => !(left == right); public static global::System.Boolean operator ==(Name left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Name left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Takes_on_accessibility_of_value_object.verified.txt b/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Takes_on_accessibility_of_value_object.verified.txt index 7c2d7d19cf..b219659eac 100644 --- a/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Takes_on_accessibility_of_value_object.verified.txt +++ b/tests/SnapshotTests/OrleansGeneration/snapshots/snap-v8.0/OrleansGenerationTests.Takes_on_accessibility_of_value_object.verified.txt @@ -328,7 +328,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Age && Equals((Age)obj); } - public static global::System.Boolean operator ==(Age left, Age right) => Equals(left, right); + public static global::System.Boolean operator ==(Age left, Age right) => left.Equals(right); public static global::System.Boolean operator !=(Age left, Age right) => !(left == right); public static global::System.Boolean operator ==(Age left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Age left, System.Int32 right) => !Equals(left.Value, right); @@ -841,7 +841,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is Name && Equals((Name)obj); } - public static global::System.Boolean operator ==(Name left, Name right) => Equals(left, right); + public static global::System.Boolean operator ==(Name left, Name right) => left.Equals(right); public static global::System.Boolean operator !=(Name left, Name right) => !(left == right); public static global::System.Boolean operator ==(Name left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(Name left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Generates_IParsable.verified.txt index 9fdd418b12..89409bab62 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Generates_IParsable.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt index bcafe3aa9b..931b38c7e5 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt index 98fce53e79..009c548374 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt index 2530013a05..666e59d1df 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt index be43833073..7bcde81c4b 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForStrings.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForStrings.Generates_IParsable.verified.txt index 181c2b8d91..95d7718ee6 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForStrings.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForStrings.Generates_IParsable.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt index f10458c242..0dfd1727f2 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v3.1/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt @@ -233,7 +233,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Generates_IParsable.verified.txt index 6f112f97a8..fb27f97129 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Generates_IParsable.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt index 88c6d0c7d5..f896efb913 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt index 462e4072c6..8d1842820d 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt index d4fc49227c..f9634c50db 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt index bc0223d7cc..a276dbc655 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt index 1da2198605..17826c0b88 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt index d4fc49227c..f9634c50db 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForStrings.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForStrings.Generates_IParsable.verified.txt index 181c2b8d91..95d7718ee6 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForStrings.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForStrings.Generates_IParsable.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt index f10458c242..0dfd1727f2 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.6.1/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt @@ -233,7 +233,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Generates_IParsable.verified.txt index d9f0f55115..118fca98f2 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Generates_IParsable.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt index 6b1897f9ed..d1cabd2676 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt index 2e8c924f86..fb6295a109 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt index d2f786a1a3..345e0eaea9 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt index 08383f76ea..9196de1e6e 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt index 69a3ab59fe..b9cbe09020 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt index d2f786a1a3..345e0eaea9 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForStrings.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForStrings.Generates_IParsable.verified.txt index 181c2b8d91..95d7718ee6 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForStrings.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForStrings.Generates_IParsable.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt index f10458c242..0dfd1727f2 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v4.8/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt @@ -233,7 +233,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt index 9fdd418b12..89409bab62 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt index bcafe3aa9b..931b38c7e5 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt index 98fce53e79..009c548374 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt index 2530013a05..666e59d1df 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt index be43833073..7bcde81c4b 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForStrings.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForStrings.Generates_IParsable.verified.txt index 181c2b8d91..95d7718ee6 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForStrings.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForStrings.Generates_IParsable.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt index f10458c242..0dfd1727f2 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v5.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt @@ -233,7 +233,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt index 9fdd418b12..89409bab62 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt index bcafe3aa9b..931b38c7e5 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt index 98fce53e79..009c548374 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt index 2530013a05..666e59d1df 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt index be43833073..7bcde81c4b 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt index cf5945ff53..d70bbab883 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForStrings.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForStrings.Generates_IParsable.verified.txt index 181c2b8d91..95d7718ee6 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForStrings.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForStrings.Generates_IParsable.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt index f10458c242..0dfd1727f2 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v6.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt @@ -233,7 +233,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt index 1829d7a550..7ec1a0e659 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt index 58998a8088..a3672abbd4 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt index 7ccb228583..210d809c06 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt index 31fe0a7aeb..c2d8cf491b 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt index 464a72738a..86f90ff0b3 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt index a1621ce056..22c22450c5 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt index 31fe0a7aeb..c2d8cf491b 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable.verified.txt index 8f9f90e41f..8fc459437c 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt index 921ef37fd1..6288113df8 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt @@ -233,7 +233,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable_except_if_it_is_already_specified.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable_except_if_it_is_already_specified.verified.txt index e6b083fa3f..30cabe7ef7 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable_except_if_it_is_already_specified.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Generates_IParsable_except_if_it_is_already_specified.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is City && Equals((City)obj); } - public static global::System.Boolean operator ==(City left, City right) => Equals(left, right); + public static global::System.Boolean operator ==(City left, City right) => left.Equals(right); public static global::System.Boolean operator !=(City left, City right) => !(left == right); public static global::System.Boolean operator ==(City left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(City left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Writes_explicit_interface_implementation_if_user_provided_Parse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Writes_explicit_interface_implementation_if_user_provided_Parse_method.verified.txt index 91abe8d314..4f069b5cf3 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Writes_explicit_interface_implementation_if_user_provided_Parse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v7.0/ParsingTestsForStrings.Writes_explicit_interface_implementation_if_user_provided_Parse_method.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt index 8eeaf61ee5..0b80cd1ace 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Generates_IParsable.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt index 45b9666299..956285a733 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Ignores_TryParse_where_last_parameter_is_not_out.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt index 5b7fbbfeb0..598ab1b828 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_TryParse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass2 && Equals((MyClass2)obj); } - public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass2 left, MyClass2 right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass2 left, MyClass2 right) => !(left == right); public static global::System.Boolean operator ==(MyClass2 left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass2 left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt index 84e6a4d688..39ef2961d4 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_expression_bodied_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt index 582a6f5090..a4ac04d8eb 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skip_user_provided_multiple_Parse_methods.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt index 10219902bd..2a1c55316b 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt index 84e6a4d688..39ef2961d4 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForPrimitives.Skips_user_provided_Parse_method_with_one_parameter.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable.verified.txt index 8f9f90e41f..8fc459437c 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt index 921ef37fd1..6288113df8 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable_and_calls_our_validation_method.verified.txt @@ -233,7 +233,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable_except_if_it_is_already_specified.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable_except_if_it_is_already_specified.verified.txt index e6b083fa3f..30cabe7ef7 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable_except_if_it_is_already_specified.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Generates_IParsable_except_if_it_is_already_specified.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is City && Equals((City)obj); } - public static global::System.Boolean operator ==(City left, City right) => Equals(left, right); + public static global::System.Boolean operator ==(City left, City right) => left.Equals(right); public static global::System.Boolean operator !=(City left, City right) => !(left == right); public static global::System.Boolean operator ==(City left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(City left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Omits_parse_method_if_user_provides_exact_match.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Omits_parse_method_if_user_provides_exact_match.verified.txt index 07e78b442d..0c8e3fd7ba 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Omits_parse_method_if_user_provides_exact_match.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Omits_parse_method_if_user_provides_exact_match.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Writes_explicit_interface_implementation_if_user_provided_Parse_method.verified.txt b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Writes_explicit_interface_implementation_if_user_provided_Parse_method.verified.txt index 91abe8d314..4f069b5cf3 100644 --- a/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Writes_explicit_interface_implementation_if_user_provided_Parse_method.verified.txt +++ b/tests/SnapshotTests/Parsing/snapshots/snap-v8.0/ParsingTestsForStrings.Writes_explicit_interface_implementation_if_user_provided_Parse_method.verified.txt @@ -199,7 +199,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyClass && Equals((MyClass)obj); } - public static global::System.Boolean operator ==(MyClass left, MyClass right) => Equals(left, right); + public static global::System.Boolean operator ==(MyClass left, MyClass right) => left.Equals(right); public static global::System.Boolean operator !=(MyClass left, MyClass right) => !(left == right); public static global::System.Boolean operator ==(MyClass left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyClass left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/0Rjlo8wVsY.verified.txt b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/0Rjlo8wVsY.verified.txt index f373b13ed3..744abecfe6 100644 --- a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/0Rjlo8wVsY.verified.txt +++ b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/0Rjlo8wVsY.verified.txt @@ -195,7 +195,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/ARGteONefa.verified.txt b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/ARGteONefa.verified.txt index 319eb8981a..ce09f09c34 100644 --- a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/ARGteONefa.verified.txt +++ b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/ARGteONefa.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/SOUqLrhomJ.verified.txt b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/SOUqLrhomJ.verified.txt index e72baeaf7d..cb946cc7f1 100644 --- a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/SOUqLrhomJ.verified.txt +++ b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/SOUqLrhomJ.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/agNm5bxP65.verified.txt b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/agNm5bxP65.verified.txt index e72baeaf7d..cb946cc7f1 100644 --- a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/agNm5bxP65.verified.txt +++ b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/agNm5bxP65.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/as81wtsTdJ.verified.txt b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/as81wtsTdJ.verified.txt index 424582fdd0..9919c06cd4 100644 --- a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/as81wtsTdJ.verified.txt +++ b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/as81wtsTdJ.verified.txt @@ -185,7 +185,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/cnxagS6vBs.verified.txt b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/cnxagS6vBs.verified.txt index dfd425d780..cd54bba5e6 100644 --- a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/cnxagS6vBs.verified.txt +++ b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/cnxagS6vBs.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/lPx7tKaO9H.verified.txt b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/lPx7tKaO9H.verified.txt index cedc3e328a..55d4dc052b 100644 --- a/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/lPx7tKaO9H.verified.txt +++ b/tests/SnapshotTests/StaticAbstracts/snapshots/snap-v8.0/lPx7tKaO9H.verified.txt @@ -185,7 +185,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is MyVo && Equals((MyVo)obj); } - public static global::System.Boolean operator ==(MyVo left, MyVo right) => Equals(left, right); + public static global::System.Boolean operator ==(MyVo left, MyVo right) => left.Equals(right); public static global::System.Boolean operator !=(MyVo left, MyVo right) => !(left == right); public static global::System.Boolean operator ==(MyVo left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(MyVo left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/0AQJp5IDiC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/0AQJp5IDiC.verified.txt index 22af06ea55..cfe882fba7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/0AQJp5IDiC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/0AQJp5IDiC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/0TG0lh6tni.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/0TG0lh6tni.verified.txt index f98edb2885..37bd5287fc 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/0TG0lh6tni.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/0TG0lh6tni.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/2KtBdBnyIY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/2KtBdBnyIY.verified.txt index 87ac7a50ed..0795c5c321 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/2KtBdBnyIY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/2KtBdBnyIY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/2XBv7DNqeD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/2XBv7DNqeD.verified.txt index 2146fb9074..ad782af57a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/2XBv7DNqeD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/2XBv7DNqeD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/3HXMKvfPVj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/3HXMKvfPVj.verified.txt index a2ecf4144d..8df5242427 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/3HXMKvfPVj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/3HXMKvfPVj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/4NZqTZQOzi.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/4NZqTZQOzi.verified.txt index 6f0d0371d5..5181b90216 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/4NZqTZQOzi.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/4NZqTZQOzi.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/4betbAbMkf.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/4betbAbMkf.verified.txt index 1ce2724d8f..a54fab2189 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/4betbAbMkf.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/4betbAbMkf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/58Q396UffP.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/58Q396UffP.verified.txt index 9b67ff1d68..5da9f8a256 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/58Q396UffP.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/58Q396UffP.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/5RPC2XJSen.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/5RPC2XJSen.verified.txt index 7f75cf49c3..1b978ceef9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/5RPC2XJSen.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/5RPC2XJSen.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/60dOpSNvpD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/60dOpSNvpD.verified.txt index c93586f36b..8e4f54ac6a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/60dOpSNvpD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/60dOpSNvpD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/AFMcvpuumD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/AFMcvpuumD.verified.txt index bad16353ec..219179e262 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/AFMcvpuumD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/AFMcvpuumD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/AJWzuJoTcL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/AJWzuJoTcL.verified.txt index cfd3fa307a..ee6a81380a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/AJWzuJoTcL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/AJWzuJoTcL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/BbUYWGSZ7t.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/BbUYWGSZ7t.verified.txt index 438680f917..1faf2f4623 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/BbUYWGSZ7t.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/BbUYWGSZ7t.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/C3aV5bGuhC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/C3aV5bGuhC.verified.txt index 2fe6bd8ff0..4d9607edc9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/C3aV5bGuhC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/C3aV5bGuhC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/E5VqeEIBNO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/E5VqeEIBNO.verified.txt index 7b71f58fbd..4f1e9be40e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/E5VqeEIBNO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/E5VqeEIBNO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/F9MZG1XNfF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/F9MZG1XNfF.verified.txt index d6c97dcd8b..fac65b334d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/F9MZG1XNfF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/F9MZG1XNfF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/GHcjDwl5kc.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/GHcjDwl5kc.verified.txt index 46f12ca1a9..94709ad3d3 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/GHcjDwl5kc.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/GHcjDwl5kc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/GiYPYYoVS0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/GiYPYYoVS0.verified.txt index b7a6789870..4c4820984a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/GiYPYYoVS0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/GiYPYYoVS0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/I4ufDqNrEj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/I4ufDqNrEj.verified.txt index c341f358f1..a867d9d570 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/I4ufDqNrEj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/I4ufDqNrEj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/IB1StTHBRV.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/IB1StTHBRV.verified.txt index ea1b5be740..09b8917b28 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/IB1StTHBRV.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/IB1StTHBRV.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/KiSa1z2GlF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/KiSa1z2GlF.verified.txt index 49e6779b73..45f5f03e6e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/KiSa1z2GlF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/KiSa1z2GlF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/KzA5jtGUkR.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/KzA5jtGUkR.verified.txt index 31938687da..34049b00dd 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/KzA5jtGUkR.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/KzA5jtGUkR.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/NSBfexk9Jx.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/NSBfexk9Jx.verified.txt index 62cb9cf94d..b724598077 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/NSBfexk9Jx.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/NSBfexk9Jx.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/P0gu2bg1Qe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/P0gu2bg1Qe.verified.txt index c1f344dca2..62be6626a7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/P0gu2bg1Qe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/P0gu2bg1Qe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/PokjGcKPE1.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/PokjGcKPE1.verified.txt index 8a25a9fd31..7212b6d879 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/PokjGcKPE1.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/PokjGcKPE1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/RMtpAEyfS3.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/RMtpAEyfS3.verified.txt index 8a71f0aabe..d117a33788 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/RMtpAEyfS3.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/RMtpAEyfS3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/SVPyMplOJY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/SVPyMplOJY.verified.txt index ac3ee36e07..88069c6ed1 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/SVPyMplOJY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/SVPyMplOJY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/UFEoQsxK4b.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/UFEoQsxK4b.verified.txt index 7d66c648a8..18f4d10012 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/UFEoQsxK4b.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/UFEoQsxK4b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/VLDltbmZEe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/VLDltbmZEe.verified.txt index c49f17986e..75f1e0e63b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/VLDltbmZEe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/VLDltbmZEe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/Y7OQFA2Vzd.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/Y7OQFA2Vzd.verified.txt index 368a246fdc..7b471e5094 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/Y7OQFA2Vzd.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/Y7OQFA2Vzd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/beUUeB1dtC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/beUUeB1dtC.verified.txt index 66b58ec3a3..cc4f8d887d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/beUUeB1dtC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/beUUeB1dtC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/d0p84e4sx8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/d0p84e4sx8.verified.txt index 6071b24ccd..b88713ec71 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/d0p84e4sx8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/d0p84e4sx8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/e7wOU2uIU7.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/e7wOU2uIU7.verified.txt index a9e94b9e33..8fee07fe29 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/e7wOU2uIU7.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/e7wOU2uIU7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/e9DVdkW1mv.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/e9DVdkW1mv.verified.txt index 7713840ed0..165cb2670c 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/e9DVdkW1mv.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/e9DVdkW1mv.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/fWP2lfWLPk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/fWP2lfWLPk.verified.txt index c6c6551621..3150ea6a63 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/fWP2lfWLPk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/fWP2lfWLPk.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/gZv6qTriEZ.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/gZv6qTriEZ.verified.txt index bcfbc46ecd..4eceef12cb 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/gZv6qTriEZ.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/gZv6qTriEZ.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/gdSgCnvoLX.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/gdSgCnvoLX.verified.txt index e5d38c7c63..ed2aad3306 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/gdSgCnvoLX.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/gdSgCnvoLX.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/huJ2n43h1I.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/huJ2n43h1I.verified.txt index ae4671cd54..573e5e10a5 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/huJ2n43h1I.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/huJ2n43h1I.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/ixdKgjUJGb.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/ixdKgjUJGb.verified.txt index 1cdbbcea03..da8d38d4ad 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/ixdKgjUJGb.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/ixdKgjUJGb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/jw0eX5c7z8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/jw0eX5c7z8.verified.txt index 686565c471..20f5044441 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/jw0eX5c7z8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/jw0eX5c7z8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/kSPZoPlDl9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/kSPZoPlDl9.verified.txt index d358fab5a6..1a162d9e06 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/kSPZoPlDl9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/kSPZoPlDl9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/lejpR8DQX0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/lejpR8DQX0.verified.txt index c0e4780650..09a90d304b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/lejpR8DQX0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/lejpR8DQX0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/orOucBh0pL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/orOucBh0pL.verified.txt index 1c51c9ca03..2502f88b25 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/orOucBh0pL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/orOucBh0pL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/oz0eD1nHou.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/oz0eD1nHou.verified.txt index f2c6e2f9ca..5dd8fd3409 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/oz0eD1nHou.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/oz0eD1nHou.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/pKThSIEAfM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/pKThSIEAfM.verified.txt index 6508d1db12..3ee15d8891 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/pKThSIEAfM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/pKThSIEAfM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/pZ2MY5N3fO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/pZ2MY5N3fO.verified.txt index d0ec0b387c..127d10d41a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/pZ2MY5N3fO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/pZ2MY5N3fO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/piRD3s8PHK.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/piRD3s8PHK.verified.txt index b89ee0b515..18c70fdeab 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/piRD3s8PHK.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/piRD3s8PHK.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/qZgPE8pch9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/qZgPE8pch9.verified.txt index 55dded951d..2bfaf78168 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/qZgPE8pch9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/qZgPE8pch9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/rLulWISFGT.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/rLulWISFGT.verified.txt index bca0972174..cc17e04a31 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/rLulWISFGT.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/rLulWISFGT.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/tAEH8P36Jy.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/tAEH8P36Jy.verified.txt index 04b5fe7641..cb92e920f7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/tAEH8P36Jy.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/tAEH8P36Jy.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/tttEZrgU5W.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/tttEZrgU5W.verified.txt index 3199aae0e1..1685a338b4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/tttEZrgU5W.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/tttEZrgU5W.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/v8SuB33vdj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/v8SuB33vdj.verified.txt index cc38cea1cb..9c823bd380 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/v8SuB33vdj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/v8SuB33vdj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/vIBGW2nFlB.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/vIBGW2nFlB.verified.txt index ad12f6a1b4..2ec79ca2db 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/vIBGW2nFlB.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/vIBGW2nFlB.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/xnaJz0wDbM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/xnaJz0wDbM.verified.txt index f2a3d0784e..0518162589 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/xnaJz0wDbM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/xnaJz0wDbM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/ygUZAPY2Vk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/ygUZAPY2Vk.verified.txt index 15090cb61e..12f0dd9438 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/ygUZAPY2Vk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/ygUZAPY2Vk.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/zBAvbucpNY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/zBAvbucpNY.verified.txt index 781f4d4da1..6bf5aeb9cf 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/zBAvbucpNY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v3.1/zBAvbucpNY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/0AQJp5IDiC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/0AQJp5IDiC.verified.txt index d7e3356b23..2df72607d2 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/0AQJp5IDiC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/0AQJp5IDiC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/0TG0lh6tni.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/0TG0lh6tni.verified.txt index ba16ba289a..abdff7fc34 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/0TG0lh6tni.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/0TG0lh6tni.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/2KtBdBnyIY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/2KtBdBnyIY.verified.txt index 6bfbd1cc33..1e6387b6c3 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/2KtBdBnyIY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/2KtBdBnyIY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/2XBv7DNqeD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/2XBv7DNqeD.verified.txt index e1ecbbede6..72e4df1f68 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/2XBv7DNqeD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/2XBv7DNqeD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/3HXMKvfPVj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/3HXMKvfPVj.verified.txt index 75867d3ba2..be79f3eaec 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/3HXMKvfPVj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/3HXMKvfPVj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/4NZqTZQOzi.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/4NZqTZQOzi.verified.txt index 5debd787ba..9d211710a9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/4NZqTZQOzi.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/4NZqTZQOzi.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/4betbAbMkf.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/4betbAbMkf.verified.txt index 614d798a6a..39c08e3655 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/4betbAbMkf.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/4betbAbMkf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/58Q396UffP.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/58Q396UffP.verified.txt index e5fbd53762..48630d5494 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/58Q396UffP.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/58Q396UffP.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/5RPC2XJSen.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/5RPC2XJSen.verified.txt index 8eef305751..b043050faf 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/5RPC2XJSen.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/5RPC2XJSen.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/60dOpSNvpD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/60dOpSNvpD.verified.txt index 784c0b27b4..eebc361b0f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/60dOpSNvpD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/60dOpSNvpD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/AFMcvpuumD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/AFMcvpuumD.verified.txt index 1001b846f6..fe19ad4131 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/AFMcvpuumD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/AFMcvpuumD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/AJWzuJoTcL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/AJWzuJoTcL.verified.txt index 889cb67f32..6ec6d16c9c 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/AJWzuJoTcL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/AJWzuJoTcL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/BbUYWGSZ7t.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/BbUYWGSZ7t.verified.txt index 0df1f1d41d..3d9e8d4f39 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/BbUYWGSZ7t.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/BbUYWGSZ7t.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/C3aV5bGuhC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/C3aV5bGuhC.verified.txt index 2c651f8021..49546642e3 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/C3aV5bGuhC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/C3aV5bGuhC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/E5VqeEIBNO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/E5VqeEIBNO.verified.txt index 8a8dcb6473..0c3f618d97 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/E5VqeEIBNO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/E5VqeEIBNO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/F9MZG1XNfF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/F9MZG1XNfF.verified.txt index bec1961a07..9cfac89dd0 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/F9MZG1XNfF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/F9MZG1XNfF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/GHcjDwl5kc.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/GHcjDwl5kc.verified.txt index 13c0538917..72a605f9c0 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/GHcjDwl5kc.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/GHcjDwl5kc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/GiYPYYoVS0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/GiYPYYoVS0.verified.txt index 620705b1d7..166cfa16a9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/GiYPYYoVS0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/GiYPYYoVS0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/I4ufDqNrEj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/I4ufDqNrEj.verified.txt index 10c085490c..ad8d1aa1d6 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/I4ufDqNrEj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/I4ufDqNrEj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/IB1StTHBRV.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/IB1StTHBRV.verified.txt index ea1b5be740..09b8917b28 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/IB1StTHBRV.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/IB1StTHBRV.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/KiSa1z2GlF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/KiSa1z2GlF.verified.txt index e249282f5d..68772d8816 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/KiSa1z2GlF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/KiSa1z2GlF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/KzA5jtGUkR.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/KzA5jtGUkR.verified.txt index 7755163e10..aff25e1cde 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/KzA5jtGUkR.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/KzA5jtGUkR.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/NSBfexk9Jx.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/NSBfexk9Jx.verified.txt index 086606ff49..7863ab2bc5 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/NSBfexk9Jx.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/NSBfexk9Jx.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/P0gu2bg1Qe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/P0gu2bg1Qe.verified.txt index 57640cbcd5..a62c7a0a28 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/P0gu2bg1Qe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/P0gu2bg1Qe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/PokjGcKPE1.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/PokjGcKPE1.verified.txt index 818f852bd6..3775f0b0da 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/PokjGcKPE1.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/PokjGcKPE1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/RMtpAEyfS3.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/RMtpAEyfS3.verified.txt index a32ca0a98e..776fb60e4f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/RMtpAEyfS3.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/RMtpAEyfS3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/SVPyMplOJY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/SVPyMplOJY.verified.txt index b28de3762f..39e6afb63a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/SVPyMplOJY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/SVPyMplOJY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/UFEoQsxK4b.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/UFEoQsxK4b.verified.txt index 67adbf87f4..6fb650e7b4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/UFEoQsxK4b.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/UFEoQsxK4b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/VLDltbmZEe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/VLDltbmZEe.verified.txt index 5ecd6e3417..d0620966cd 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/VLDltbmZEe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/VLDltbmZEe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/Y7OQFA2Vzd.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/Y7OQFA2Vzd.verified.txt index be4872c021..068e788c1f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/Y7OQFA2Vzd.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/Y7OQFA2Vzd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/beUUeB1dtC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/beUUeB1dtC.verified.txt index 7ca4d842c0..bb539828b4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/beUUeB1dtC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/beUUeB1dtC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/d0p84e4sx8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/d0p84e4sx8.verified.txt index 4c3704dea7..c6bdbfc6ae 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/d0p84e4sx8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/d0p84e4sx8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/e7wOU2uIU7.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/e7wOU2uIU7.verified.txt index 3f98724f43..f91159e2b4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/e7wOU2uIU7.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/e7wOU2uIU7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/e9DVdkW1mv.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/e9DVdkW1mv.verified.txt index 8bcd6a55c4..afb10fe242 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/e9DVdkW1mv.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/e9DVdkW1mv.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/fWP2lfWLPk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/fWP2lfWLPk.verified.txt index 5dcf0cf8df..b01cdc213f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/fWP2lfWLPk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/fWP2lfWLPk.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/gZv6qTriEZ.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/gZv6qTriEZ.verified.txt index e2d250b05a..2f87701cc4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/gZv6qTriEZ.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/gZv6qTriEZ.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/gdSgCnvoLX.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/gdSgCnvoLX.verified.txt index 946b9d231c..d7f85d641e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/gdSgCnvoLX.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/gdSgCnvoLX.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/huJ2n43h1I.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/huJ2n43h1I.verified.txt index a4a1cdf907..cb1b859a4d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/huJ2n43h1I.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/huJ2n43h1I.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/ixdKgjUJGb.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/ixdKgjUJGb.verified.txt index bbbbf4ba5d..447029d2a5 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/ixdKgjUJGb.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/ixdKgjUJGb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/jw0eX5c7z8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/jw0eX5c7z8.verified.txt index 686565c471..20f5044441 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/jw0eX5c7z8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/jw0eX5c7z8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/kSPZoPlDl9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/kSPZoPlDl9.verified.txt index dff9f9f880..1abcd31ee9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/kSPZoPlDl9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/kSPZoPlDl9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/lejpR8DQX0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/lejpR8DQX0.verified.txt index 25aee582a0..c166766964 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/lejpR8DQX0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/lejpR8DQX0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/orOucBh0pL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/orOucBh0pL.verified.txt index a2644fb226..acaeab0bea 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/orOucBh0pL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/orOucBh0pL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/oz0eD1nHou.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/oz0eD1nHou.verified.txt index 907d97ee64..661c0b2b5c 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/oz0eD1nHou.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/oz0eD1nHou.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/pKThSIEAfM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/pKThSIEAfM.verified.txt index 2882914333..121ad70190 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/pKThSIEAfM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/pKThSIEAfM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/pZ2MY5N3fO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/pZ2MY5N3fO.verified.txt index f144f39203..aae9fdc4aa 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/pZ2MY5N3fO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/pZ2MY5N3fO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/piRD3s8PHK.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/piRD3s8PHK.verified.txt index b89ee0b515..18c70fdeab 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/piRD3s8PHK.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/piRD3s8PHK.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/qZgPE8pch9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/qZgPE8pch9.verified.txt index f238ba1205..54fa2da898 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/qZgPE8pch9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/qZgPE8pch9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/rLulWISFGT.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/rLulWISFGT.verified.txt index b8a3c52de4..7f16558509 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/rLulWISFGT.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/rLulWISFGT.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/tAEH8P36Jy.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/tAEH8P36Jy.verified.txt index 99e6eb2ca3..fc77330e20 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/tAEH8P36Jy.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/tAEH8P36Jy.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/tttEZrgU5W.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/tttEZrgU5W.verified.txt index f4eed34929..202d4fbd25 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/tttEZrgU5W.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/tttEZrgU5W.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/v8SuB33vdj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/v8SuB33vdj.verified.txt index 821fc6e32a..49d275e134 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/v8SuB33vdj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/v8SuB33vdj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/vIBGW2nFlB.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/vIBGW2nFlB.verified.txt index 48185d52fe..ec2ec7c8f6 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/vIBGW2nFlB.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/vIBGW2nFlB.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/xnaJz0wDbM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/xnaJz0wDbM.verified.txt index 2a584b54c1..fb230d33b4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/xnaJz0wDbM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/xnaJz0wDbM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/ygUZAPY2Vk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/ygUZAPY2Vk.verified.txt index 15090cb61e..12f0dd9438 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/ygUZAPY2Vk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/ygUZAPY2Vk.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/zBAvbucpNY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/zBAvbucpNY.verified.txt index 1a9863ef9b..7307dcccca 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/zBAvbucpNY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.6.1/zBAvbucpNY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/0AQJp5IDiC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/0AQJp5IDiC.verified.txt index f777e7932c..cfc150786f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/0AQJp5IDiC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/0AQJp5IDiC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/0TG0lh6tni.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/0TG0lh6tni.verified.txt index 4dfcafdc3a..2b0f053007 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/0TG0lh6tni.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/0TG0lh6tni.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/2KtBdBnyIY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/2KtBdBnyIY.verified.txt index 46d559497a..03913a4df3 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/2KtBdBnyIY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/2KtBdBnyIY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/2XBv7DNqeD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/2XBv7DNqeD.verified.txt index 8f83e8fe40..d4121b135e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/2XBv7DNqeD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/2XBv7DNqeD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/3HXMKvfPVj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/3HXMKvfPVj.verified.txt index 75867d3ba2..be79f3eaec 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/3HXMKvfPVj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/3HXMKvfPVj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/4NZqTZQOzi.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/4NZqTZQOzi.verified.txt index c647f2fd05..f6aeff7693 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/4NZqTZQOzi.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/4NZqTZQOzi.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/4betbAbMkf.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/4betbAbMkf.verified.txt index 30490f0d2c..bd4680bebd 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/4betbAbMkf.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/4betbAbMkf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/58Q396UffP.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/58Q396UffP.verified.txt index b5587c0cb6..fb55b84a0a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/58Q396UffP.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/58Q396UffP.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/5RPC2XJSen.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/5RPC2XJSen.verified.txt index 60cad85f13..d699e6b23f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/5RPC2XJSen.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/5RPC2XJSen.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/60dOpSNvpD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/60dOpSNvpD.verified.txt index 25004ac70e..5717e4bf6d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/60dOpSNvpD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/60dOpSNvpD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/AFMcvpuumD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/AFMcvpuumD.verified.txt index 22c288613c..93954fa045 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/AFMcvpuumD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/AFMcvpuumD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/AJWzuJoTcL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/AJWzuJoTcL.verified.txt index 1365409e5b..202f1b2040 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/AJWzuJoTcL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/AJWzuJoTcL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/BbUYWGSZ7t.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/BbUYWGSZ7t.verified.txt index 0df1f1d41d..3d9e8d4f39 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/BbUYWGSZ7t.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/BbUYWGSZ7t.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/C3aV5bGuhC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/C3aV5bGuhC.verified.txt index 2c651f8021..49546642e3 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/C3aV5bGuhC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/C3aV5bGuhC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/E5VqeEIBNO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/E5VqeEIBNO.verified.txt index f30077dd98..48fd561067 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/E5VqeEIBNO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/E5VqeEIBNO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/F9MZG1XNfF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/F9MZG1XNfF.verified.txt index bec1961a07..9cfac89dd0 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/F9MZG1XNfF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/F9MZG1XNfF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/GHcjDwl5kc.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/GHcjDwl5kc.verified.txt index 13c0538917..72a605f9c0 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/GHcjDwl5kc.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/GHcjDwl5kc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/GiYPYYoVS0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/GiYPYYoVS0.verified.txt index 89c08c50ce..574e35db04 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/GiYPYYoVS0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/GiYPYYoVS0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/I4ufDqNrEj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/I4ufDqNrEj.verified.txt index 919a822f83..a4ba6012ad 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/I4ufDqNrEj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/I4ufDqNrEj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/IB1StTHBRV.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/IB1StTHBRV.verified.txt index ea1b5be740..09b8917b28 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/IB1StTHBRV.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/IB1StTHBRV.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/KiSa1z2GlF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/KiSa1z2GlF.verified.txt index 864578a088..efbf2c65ca 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/KiSa1z2GlF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/KiSa1z2GlF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/KzA5jtGUkR.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/KzA5jtGUkR.verified.txt index 7755163e10..aff25e1cde 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/KzA5jtGUkR.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/KzA5jtGUkR.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/NSBfexk9Jx.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/NSBfexk9Jx.verified.txt index 339fa8c425..3422b47bf5 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/NSBfexk9Jx.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/NSBfexk9Jx.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/P0gu2bg1Qe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/P0gu2bg1Qe.verified.txt index 8ccd8d0b8d..c4cb9383d4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/P0gu2bg1Qe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/P0gu2bg1Qe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/PokjGcKPE1.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/PokjGcKPE1.verified.txt index 818f852bd6..3775f0b0da 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/PokjGcKPE1.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/PokjGcKPE1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/RMtpAEyfS3.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/RMtpAEyfS3.verified.txt index a32ca0a98e..776fb60e4f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/RMtpAEyfS3.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/RMtpAEyfS3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/SVPyMplOJY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/SVPyMplOJY.verified.txt index b28de3762f..39e6afb63a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/SVPyMplOJY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/SVPyMplOJY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/UFEoQsxK4b.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/UFEoQsxK4b.verified.txt index bc3725bf29..f1ebcfab01 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/UFEoQsxK4b.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/UFEoQsxK4b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/VLDltbmZEe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/VLDltbmZEe.verified.txt index b6b155ed42..ee8bc7f1db 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/VLDltbmZEe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/VLDltbmZEe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/Y7OQFA2Vzd.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/Y7OQFA2Vzd.verified.txt index 6bf9f61c8d..4d034a8a97 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/Y7OQFA2Vzd.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/Y7OQFA2Vzd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/beUUeB1dtC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/beUUeB1dtC.verified.txt index 7ca4d842c0..bb539828b4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/beUUeB1dtC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/beUUeB1dtC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/d0p84e4sx8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/d0p84e4sx8.verified.txt index 4c3704dea7..c6bdbfc6ae 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/d0p84e4sx8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/d0p84e4sx8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/e7wOU2uIU7.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/e7wOU2uIU7.verified.txt index 3f98724f43..f91159e2b4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/e7wOU2uIU7.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/e7wOU2uIU7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/e9DVdkW1mv.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/e9DVdkW1mv.verified.txt index d1afef4e25..57e33e8981 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/e9DVdkW1mv.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/e9DVdkW1mv.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/fWP2lfWLPk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/fWP2lfWLPk.verified.txt index 5dcf0cf8df..b01cdc213f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/fWP2lfWLPk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/fWP2lfWLPk.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/gZv6qTriEZ.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/gZv6qTriEZ.verified.txt index e2d250b05a..2f87701cc4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/gZv6qTriEZ.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/gZv6qTriEZ.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/gdSgCnvoLX.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/gdSgCnvoLX.verified.txt index 946b9d231c..d7f85d641e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/gdSgCnvoLX.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/gdSgCnvoLX.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/huJ2n43h1I.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/huJ2n43h1I.verified.txt index 26650d4668..c5e7642c98 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/huJ2n43h1I.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/huJ2n43h1I.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/ixdKgjUJGb.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/ixdKgjUJGb.verified.txt index b3f2341962..1e38b36286 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/ixdKgjUJGb.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/ixdKgjUJGb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/jw0eX5c7z8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/jw0eX5c7z8.verified.txt index 686565c471..20f5044441 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/jw0eX5c7z8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/jw0eX5c7z8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/kSPZoPlDl9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/kSPZoPlDl9.verified.txt index dff9f9f880..1abcd31ee9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/kSPZoPlDl9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/kSPZoPlDl9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/lejpR8DQX0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/lejpR8DQX0.verified.txt index 25aee582a0..c166766964 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/lejpR8DQX0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/lejpR8DQX0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/orOucBh0pL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/orOucBh0pL.verified.txt index a2644fb226..acaeab0bea 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/orOucBh0pL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/orOucBh0pL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/oz0eD1nHou.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/oz0eD1nHou.verified.txt index 26647abf75..ecc62a2dbc 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/oz0eD1nHou.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/oz0eD1nHou.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/pKThSIEAfM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/pKThSIEAfM.verified.txt index 31dcdaaff8..676582a432 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/pKThSIEAfM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/pKThSIEAfM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/pZ2MY5N3fO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/pZ2MY5N3fO.verified.txt index abfa79bda9..9b915f3f03 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/pZ2MY5N3fO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/pZ2MY5N3fO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/piRD3s8PHK.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/piRD3s8PHK.verified.txt index b89ee0b515..18c70fdeab 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/piRD3s8PHK.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/piRD3s8PHK.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/qZgPE8pch9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/qZgPE8pch9.verified.txt index 7c5bca63dd..69845a5ada 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/qZgPE8pch9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/qZgPE8pch9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/rLulWISFGT.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/rLulWISFGT.verified.txt index 43e5e21591..03edacfa04 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/rLulWISFGT.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/rLulWISFGT.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/tAEH8P36Jy.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/tAEH8P36Jy.verified.txt index 12fc416c53..192e51a2f5 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/tAEH8P36Jy.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/tAEH8P36Jy.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/tttEZrgU5W.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/tttEZrgU5W.verified.txt index 95adf7900b..9e0eeaa787 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/tttEZrgU5W.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/tttEZrgU5W.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/v8SuB33vdj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/v8SuB33vdj.verified.txt index 821fc6e32a..49d275e134 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/v8SuB33vdj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/v8SuB33vdj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/vIBGW2nFlB.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/vIBGW2nFlB.verified.txt index 48185d52fe..ec2ec7c8f6 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/vIBGW2nFlB.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/vIBGW2nFlB.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/xnaJz0wDbM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/xnaJz0wDbM.verified.txt index bcc01e12de..92fd772f7d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/xnaJz0wDbM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/xnaJz0wDbM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/ygUZAPY2Vk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/ygUZAPY2Vk.verified.txt index 15090cb61e..12f0dd9438 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/ygUZAPY2Vk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/ygUZAPY2Vk.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/zBAvbucpNY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/zBAvbucpNY.verified.txt index cd1a17d8b9..a257596708 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/zBAvbucpNY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v4.8/zBAvbucpNY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/0AQJp5IDiC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/0AQJp5IDiC.verified.txt index 22af06ea55..cfe882fba7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/0AQJp5IDiC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/0AQJp5IDiC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/0TG0lh6tni.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/0TG0lh6tni.verified.txt index f98edb2885..37bd5287fc 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/0TG0lh6tni.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/0TG0lh6tni.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/2KtBdBnyIY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/2KtBdBnyIY.verified.txt index 87ac7a50ed..0795c5c321 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/2KtBdBnyIY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/2KtBdBnyIY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/2XBv7DNqeD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/2XBv7DNqeD.verified.txt index 2146fb9074..ad782af57a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/2XBv7DNqeD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/2XBv7DNqeD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/3HXMKvfPVj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/3HXMKvfPVj.verified.txt index a2ecf4144d..8df5242427 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/3HXMKvfPVj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/3HXMKvfPVj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/4NZqTZQOzi.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/4NZqTZQOzi.verified.txt index 6f0d0371d5..5181b90216 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/4NZqTZQOzi.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/4NZqTZQOzi.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/4betbAbMkf.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/4betbAbMkf.verified.txt index 1ce2724d8f..a54fab2189 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/4betbAbMkf.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/4betbAbMkf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/58Q396UffP.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/58Q396UffP.verified.txt index 9b67ff1d68..5da9f8a256 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/58Q396UffP.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/58Q396UffP.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/5RPC2XJSen.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/5RPC2XJSen.verified.txt index 7f75cf49c3..1b978ceef9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/5RPC2XJSen.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/5RPC2XJSen.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/60dOpSNvpD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/60dOpSNvpD.verified.txt index c93586f36b..8e4f54ac6a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/60dOpSNvpD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/60dOpSNvpD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/AFMcvpuumD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/AFMcvpuumD.verified.txt index bad16353ec..219179e262 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/AFMcvpuumD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/AFMcvpuumD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/AJWzuJoTcL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/AJWzuJoTcL.verified.txt index cfd3fa307a..ee6a81380a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/AJWzuJoTcL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/AJWzuJoTcL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/BbUYWGSZ7t.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/BbUYWGSZ7t.verified.txt index 438680f917..1faf2f4623 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/BbUYWGSZ7t.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/BbUYWGSZ7t.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/C3aV5bGuhC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/C3aV5bGuhC.verified.txt index 2fe6bd8ff0..4d9607edc9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/C3aV5bGuhC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/C3aV5bGuhC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/E5VqeEIBNO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/E5VqeEIBNO.verified.txt index 7b71f58fbd..4f1e9be40e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/E5VqeEIBNO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/E5VqeEIBNO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/F9MZG1XNfF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/F9MZG1XNfF.verified.txt index d6c97dcd8b..fac65b334d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/F9MZG1XNfF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/F9MZG1XNfF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/GHcjDwl5kc.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/GHcjDwl5kc.verified.txt index 46f12ca1a9..94709ad3d3 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/GHcjDwl5kc.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/GHcjDwl5kc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/GiYPYYoVS0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/GiYPYYoVS0.verified.txt index b7a6789870..4c4820984a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/GiYPYYoVS0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/GiYPYYoVS0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/I4ufDqNrEj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/I4ufDqNrEj.verified.txt index c341f358f1..a867d9d570 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/I4ufDqNrEj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/I4ufDqNrEj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/IB1StTHBRV.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/IB1StTHBRV.verified.txt index ea1b5be740..09b8917b28 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/IB1StTHBRV.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/IB1StTHBRV.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/KiSa1z2GlF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/KiSa1z2GlF.verified.txt index 49e6779b73..45f5f03e6e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/KiSa1z2GlF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/KiSa1z2GlF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/KzA5jtGUkR.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/KzA5jtGUkR.verified.txt index 31938687da..34049b00dd 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/KzA5jtGUkR.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/KzA5jtGUkR.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/NSBfexk9Jx.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/NSBfexk9Jx.verified.txt index 62cb9cf94d..b724598077 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/NSBfexk9Jx.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/NSBfexk9Jx.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/P0gu2bg1Qe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/P0gu2bg1Qe.verified.txt index c1f344dca2..62be6626a7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/P0gu2bg1Qe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/P0gu2bg1Qe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/PokjGcKPE1.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/PokjGcKPE1.verified.txt index 8a25a9fd31..7212b6d879 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/PokjGcKPE1.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/PokjGcKPE1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/RMtpAEyfS3.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/RMtpAEyfS3.verified.txt index 8a71f0aabe..d117a33788 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/RMtpAEyfS3.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/RMtpAEyfS3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/SVPyMplOJY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/SVPyMplOJY.verified.txt index ac3ee36e07..88069c6ed1 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/SVPyMplOJY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/SVPyMplOJY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/UFEoQsxK4b.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/UFEoQsxK4b.verified.txt index 7d66c648a8..18f4d10012 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/UFEoQsxK4b.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/UFEoQsxK4b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/VLDltbmZEe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/VLDltbmZEe.verified.txt index c49f17986e..75f1e0e63b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/VLDltbmZEe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/VLDltbmZEe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/Y7OQFA2Vzd.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/Y7OQFA2Vzd.verified.txt index 368a246fdc..7b471e5094 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/Y7OQFA2Vzd.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/Y7OQFA2Vzd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/beUUeB1dtC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/beUUeB1dtC.verified.txt index 66b58ec3a3..cc4f8d887d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/beUUeB1dtC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/beUUeB1dtC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/d0p84e4sx8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/d0p84e4sx8.verified.txt index 6071b24ccd..b88713ec71 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/d0p84e4sx8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/d0p84e4sx8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/e7wOU2uIU7.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/e7wOU2uIU7.verified.txt index a9e94b9e33..8fee07fe29 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/e7wOU2uIU7.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/e7wOU2uIU7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/e9DVdkW1mv.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/e9DVdkW1mv.verified.txt index 7713840ed0..165cb2670c 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/e9DVdkW1mv.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/e9DVdkW1mv.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/fWP2lfWLPk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/fWP2lfWLPk.verified.txt index c6c6551621..3150ea6a63 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/fWP2lfWLPk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/fWP2lfWLPk.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/gZv6qTriEZ.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/gZv6qTriEZ.verified.txt index bcfbc46ecd..4eceef12cb 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/gZv6qTriEZ.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/gZv6qTriEZ.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/gdSgCnvoLX.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/gdSgCnvoLX.verified.txt index e5d38c7c63..ed2aad3306 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/gdSgCnvoLX.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/gdSgCnvoLX.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/huJ2n43h1I.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/huJ2n43h1I.verified.txt index ae4671cd54..573e5e10a5 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/huJ2n43h1I.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/huJ2n43h1I.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/ixdKgjUJGb.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/ixdKgjUJGb.verified.txt index 1cdbbcea03..da8d38d4ad 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/ixdKgjUJGb.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/ixdKgjUJGb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/jw0eX5c7z8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/jw0eX5c7z8.verified.txt index 686565c471..20f5044441 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/jw0eX5c7z8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/jw0eX5c7z8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/kSPZoPlDl9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/kSPZoPlDl9.verified.txt index d358fab5a6..1a162d9e06 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/kSPZoPlDl9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/kSPZoPlDl9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/lejpR8DQX0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/lejpR8DQX0.verified.txt index c0e4780650..09a90d304b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/lejpR8DQX0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/lejpR8DQX0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/orOucBh0pL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/orOucBh0pL.verified.txt index 1c51c9ca03..2502f88b25 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/orOucBh0pL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/orOucBh0pL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/oz0eD1nHou.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/oz0eD1nHou.verified.txt index f2c6e2f9ca..5dd8fd3409 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/oz0eD1nHou.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/oz0eD1nHou.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/pKThSIEAfM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/pKThSIEAfM.verified.txt index 6508d1db12..3ee15d8891 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/pKThSIEAfM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/pKThSIEAfM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/pZ2MY5N3fO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/pZ2MY5N3fO.verified.txt index d0ec0b387c..127d10d41a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/pZ2MY5N3fO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/pZ2MY5N3fO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/piRD3s8PHK.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/piRD3s8PHK.verified.txt index b89ee0b515..18c70fdeab 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/piRD3s8PHK.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/piRD3s8PHK.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/qZgPE8pch9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/qZgPE8pch9.verified.txt index 55dded951d..2bfaf78168 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/qZgPE8pch9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/qZgPE8pch9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/rLulWISFGT.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/rLulWISFGT.verified.txt index bca0972174..cc17e04a31 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/rLulWISFGT.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/rLulWISFGT.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/tAEH8P36Jy.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/tAEH8P36Jy.verified.txt index 04b5fe7641..cb92e920f7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/tAEH8P36Jy.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/tAEH8P36Jy.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/tttEZrgU5W.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/tttEZrgU5W.verified.txt index 3199aae0e1..1685a338b4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/tttEZrgU5W.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/tttEZrgU5W.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/v8SuB33vdj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/v8SuB33vdj.verified.txt index cc38cea1cb..9c823bd380 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/v8SuB33vdj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/v8SuB33vdj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/vIBGW2nFlB.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/vIBGW2nFlB.verified.txt index ad12f6a1b4..2ec79ca2db 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/vIBGW2nFlB.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/vIBGW2nFlB.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/xnaJz0wDbM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/xnaJz0wDbM.verified.txt index f2a3d0784e..0518162589 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/xnaJz0wDbM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/xnaJz0wDbM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/ygUZAPY2Vk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/ygUZAPY2Vk.verified.txt index 15090cb61e..12f0dd9438 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/ygUZAPY2Vk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/ygUZAPY2Vk.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/zBAvbucpNY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/zBAvbucpNY.verified.txt index 781f4d4da1..6bf5aeb9cf 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/zBAvbucpNY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v5.0/zBAvbucpNY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/0AQJp5IDiC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/0AQJp5IDiC.verified.txt index 22af06ea55..cfe882fba7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/0AQJp5IDiC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/0AQJp5IDiC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/0TG0lh6tni.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/0TG0lh6tni.verified.txt index f98edb2885..37bd5287fc 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/0TG0lh6tni.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/0TG0lh6tni.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/2KtBdBnyIY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/2KtBdBnyIY.verified.txt index 87ac7a50ed..0795c5c321 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/2KtBdBnyIY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/2KtBdBnyIY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/2XBv7DNqeD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/2XBv7DNqeD.verified.txt index 2146fb9074..ad782af57a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/2XBv7DNqeD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/2XBv7DNqeD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/3HXMKvfPVj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/3HXMKvfPVj.verified.txt index a2ecf4144d..8df5242427 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/3HXMKvfPVj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/3HXMKvfPVj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/4NZqTZQOzi.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/4NZqTZQOzi.verified.txt index 6f0d0371d5..5181b90216 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/4NZqTZQOzi.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/4NZqTZQOzi.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/4betbAbMkf.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/4betbAbMkf.verified.txt index 1ce2724d8f..a54fab2189 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/4betbAbMkf.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/4betbAbMkf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/58Q396UffP.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/58Q396UffP.verified.txt index 9b67ff1d68..5da9f8a256 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/58Q396UffP.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/58Q396UffP.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/5RPC2XJSen.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/5RPC2XJSen.verified.txt index 7f75cf49c3..1b978ceef9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/5RPC2XJSen.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/5RPC2XJSen.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/60dOpSNvpD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/60dOpSNvpD.verified.txt index c93586f36b..8e4f54ac6a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/60dOpSNvpD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/60dOpSNvpD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/AFMcvpuumD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/AFMcvpuumD.verified.txt index bad16353ec..219179e262 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/AFMcvpuumD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/AFMcvpuumD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/AJWzuJoTcL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/AJWzuJoTcL.verified.txt index cfd3fa307a..ee6a81380a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/AJWzuJoTcL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/AJWzuJoTcL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/BbUYWGSZ7t.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/BbUYWGSZ7t.verified.txt index 438680f917..1faf2f4623 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/BbUYWGSZ7t.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/BbUYWGSZ7t.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/C3aV5bGuhC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/C3aV5bGuhC.verified.txt index 2fe6bd8ff0..4d9607edc9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/C3aV5bGuhC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/C3aV5bGuhC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/E5VqeEIBNO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/E5VqeEIBNO.verified.txt index 7b71f58fbd..4f1e9be40e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/E5VqeEIBNO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/E5VqeEIBNO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/F9MZG1XNfF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/F9MZG1XNfF.verified.txt index d6c97dcd8b..fac65b334d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/F9MZG1XNfF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/F9MZG1XNfF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/GHcjDwl5kc.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/GHcjDwl5kc.verified.txt index 46f12ca1a9..94709ad3d3 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/GHcjDwl5kc.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/GHcjDwl5kc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/GiYPYYoVS0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/GiYPYYoVS0.verified.txt index b7a6789870..4c4820984a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/GiYPYYoVS0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/GiYPYYoVS0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/I4ufDqNrEj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/I4ufDqNrEj.verified.txt index c341f358f1..a867d9d570 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/I4ufDqNrEj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/I4ufDqNrEj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/IB1StTHBRV.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/IB1StTHBRV.verified.txt index ea1b5be740..09b8917b28 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/IB1StTHBRV.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/IB1StTHBRV.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/KiSa1z2GlF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/KiSa1z2GlF.verified.txt index 49e6779b73..45f5f03e6e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/KiSa1z2GlF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/KiSa1z2GlF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/KzA5jtGUkR.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/KzA5jtGUkR.verified.txt index 31938687da..34049b00dd 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/KzA5jtGUkR.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/KzA5jtGUkR.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/NSBfexk9Jx.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/NSBfexk9Jx.verified.txt index 62cb9cf94d..b724598077 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/NSBfexk9Jx.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/NSBfexk9Jx.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/P0gu2bg1Qe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/P0gu2bg1Qe.verified.txt index c1f344dca2..62be6626a7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/P0gu2bg1Qe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/P0gu2bg1Qe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/PokjGcKPE1.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/PokjGcKPE1.verified.txt index 8a25a9fd31..7212b6d879 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/PokjGcKPE1.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/PokjGcKPE1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/RMtpAEyfS3.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/RMtpAEyfS3.verified.txt index 8a71f0aabe..d117a33788 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/RMtpAEyfS3.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/RMtpAEyfS3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/SVPyMplOJY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/SVPyMplOJY.verified.txt index ac3ee36e07..88069c6ed1 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/SVPyMplOJY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/SVPyMplOJY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/UFEoQsxK4b.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/UFEoQsxK4b.verified.txt index 7d66c648a8..18f4d10012 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/UFEoQsxK4b.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/UFEoQsxK4b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/VLDltbmZEe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/VLDltbmZEe.verified.txt index c49f17986e..75f1e0e63b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/VLDltbmZEe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/VLDltbmZEe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/Y7OQFA2Vzd.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/Y7OQFA2Vzd.verified.txt index 368a246fdc..7b471e5094 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/Y7OQFA2Vzd.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/Y7OQFA2Vzd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/beUUeB1dtC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/beUUeB1dtC.verified.txt index 66b58ec3a3..cc4f8d887d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/beUUeB1dtC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/beUUeB1dtC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/d0p84e4sx8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/d0p84e4sx8.verified.txt index 6071b24ccd..b88713ec71 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/d0p84e4sx8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/d0p84e4sx8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/e7wOU2uIU7.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/e7wOU2uIU7.verified.txt index a9e94b9e33..8fee07fe29 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/e7wOU2uIU7.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/e7wOU2uIU7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/e9DVdkW1mv.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/e9DVdkW1mv.verified.txt index 7713840ed0..165cb2670c 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/e9DVdkW1mv.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/e9DVdkW1mv.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/fWP2lfWLPk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/fWP2lfWLPk.verified.txt index c6c6551621..3150ea6a63 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/fWP2lfWLPk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/fWP2lfWLPk.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/gZv6qTriEZ.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/gZv6qTriEZ.verified.txt index bcfbc46ecd..4eceef12cb 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/gZv6qTriEZ.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/gZv6qTriEZ.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/gdSgCnvoLX.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/gdSgCnvoLX.verified.txt index e5d38c7c63..ed2aad3306 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/gdSgCnvoLX.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/gdSgCnvoLX.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/huJ2n43h1I.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/huJ2n43h1I.verified.txt index ae4671cd54..573e5e10a5 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/huJ2n43h1I.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/huJ2n43h1I.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/ixdKgjUJGb.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/ixdKgjUJGb.verified.txt index 1cdbbcea03..da8d38d4ad 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/ixdKgjUJGb.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/ixdKgjUJGb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/jw0eX5c7z8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/jw0eX5c7z8.verified.txt index 686565c471..20f5044441 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/jw0eX5c7z8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/jw0eX5c7z8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/kSPZoPlDl9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/kSPZoPlDl9.verified.txt index d358fab5a6..1a162d9e06 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/kSPZoPlDl9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/kSPZoPlDl9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/lejpR8DQX0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/lejpR8DQX0.verified.txt index c0e4780650..09a90d304b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/lejpR8DQX0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/lejpR8DQX0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/orOucBh0pL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/orOucBh0pL.verified.txt index 1c51c9ca03..2502f88b25 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/orOucBh0pL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/orOucBh0pL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/oz0eD1nHou.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/oz0eD1nHou.verified.txt index f2c6e2f9ca..5dd8fd3409 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/oz0eD1nHou.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/oz0eD1nHou.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/pKThSIEAfM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/pKThSIEAfM.verified.txt index 6508d1db12..3ee15d8891 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/pKThSIEAfM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/pKThSIEAfM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/pZ2MY5N3fO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/pZ2MY5N3fO.verified.txt index d0ec0b387c..127d10d41a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/pZ2MY5N3fO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/pZ2MY5N3fO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/piRD3s8PHK.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/piRD3s8PHK.verified.txt index b89ee0b515..18c70fdeab 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/piRD3s8PHK.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/piRD3s8PHK.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/qZgPE8pch9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/qZgPE8pch9.verified.txt index 55dded951d..2bfaf78168 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/qZgPE8pch9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/qZgPE8pch9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/rLulWISFGT.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/rLulWISFGT.verified.txt index bca0972174..cc17e04a31 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/rLulWISFGT.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/rLulWISFGT.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/tAEH8P36Jy.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/tAEH8P36Jy.verified.txt index 04b5fe7641..cb92e920f7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/tAEH8P36Jy.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/tAEH8P36Jy.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/tttEZrgU5W.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/tttEZrgU5W.verified.txt index 3199aae0e1..1685a338b4 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/tttEZrgU5W.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/tttEZrgU5W.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/v8SuB33vdj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/v8SuB33vdj.verified.txt index cc38cea1cb..9c823bd380 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/v8SuB33vdj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/v8SuB33vdj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/vIBGW2nFlB.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/vIBGW2nFlB.verified.txt index ad12f6a1b4..2ec79ca2db 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/vIBGW2nFlB.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/vIBGW2nFlB.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/xnaJz0wDbM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/xnaJz0wDbM.verified.txt index f2a3d0784e..0518162589 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/xnaJz0wDbM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/xnaJz0wDbM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/ygUZAPY2Vk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/ygUZAPY2Vk.verified.txt index 15090cb61e..12f0dd9438 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/ygUZAPY2Vk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/ygUZAPY2Vk.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/zBAvbucpNY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/zBAvbucpNY.verified.txt index 781f4d4da1..6bf5aeb9cf 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/zBAvbucpNY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v6.0/zBAvbucpNY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/0AQJp5IDiC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/0AQJp5IDiC.verified.txt index 42a1dbcbb1..bc07fe08b2 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/0AQJp5IDiC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/0AQJp5IDiC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/0TG0lh6tni.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/0TG0lh6tni.verified.txt index 6a5f5e24cb..7175f7db5f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/0TG0lh6tni.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/0TG0lh6tni.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/2KtBdBnyIY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/2KtBdBnyIY.verified.txt index 5d920830ae..3066a0ba4e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/2KtBdBnyIY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/2KtBdBnyIY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/2XBv7DNqeD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/2XBv7DNqeD.verified.txt index 7d3fbc31ef..e93f563c8e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/2XBv7DNqeD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/2XBv7DNqeD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/3HXMKvfPVj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/3HXMKvfPVj.verified.txt index a2ecf4144d..8df5242427 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/3HXMKvfPVj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/3HXMKvfPVj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/4NZqTZQOzi.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/4NZqTZQOzi.verified.txt index b7d08efc89..2e0b836175 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/4NZqTZQOzi.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/4NZqTZQOzi.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/4betbAbMkf.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/4betbAbMkf.verified.txt index 62180b7e93..25ed38ef15 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/4betbAbMkf.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/4betbAbMkf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/58Q396UffP.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/58Q396UffP.verified.txt index ae8dbc2e9f..bcb8e19d4d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/58Q396UffP.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/58Q396UffP.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/5RPC2XJSen.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/5RPC2XJSen.verified.txt index 3e723ed02a..7d1ad12961 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/5RPC2XJSen.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/5RPC2XJSen.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/60dOpSNvpD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/60dOpSNvpD.verified.txt index 5cc51f0e2f..17119ca053 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/60dOpSNvpD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/60dOpSNvpD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/AFMcvpuumD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/AFMcvpuumD.verified.txt index 075f3d65c5..2923b788ab 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/AFMcvpuumD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/AFMcvpuumD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/AJWzuJoTcL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/AJWzuJoTcL.verified.txt index ae1092f15a..3638822bd6 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/AJWzuJoTcL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/AJWzuJoTcL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/BbUYWGSZ7t.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/BbUYWGSZ7t.verified.txt index 6e6ef7047b..320d67ad99 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/BbUYWGSZ7t.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/BbUYWGSZ7t.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/C3aV5bGuhC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/C3aV5bGuhC.verified.txt index 94dbbf961a..a5186a4bff 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/C3aV5bGuhC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/C3aV5bGuhC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/E5VqeEIBNO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/E5VqeEIBNO.verified.txt index 76f3c4876f..8c7b9d8b78 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/E5VqeEIBNO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/E5VqeEIBNO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/F9MZG1XNfF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/F9MZG1XNfF.verified.txt index a663401bea..179dc23c83 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/F9MZG1XNfF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/F9MZG1XNfF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/GHcjDwl5kc.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/GHcjDwl5kc.verified.txt index 46f12ca1a9..94709ad3d3 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/GHcjDwl5kc.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/GHcjDwl5kc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/GiYPYYoVS0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/GiYPYYoVS0.verified.txt index ea8ed18f40..85382b3fd1 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/GiYPYYoVS0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/GiYPYYoVS0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/I4ufDqNrEj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/I4ufDqNrEj.verified.txt index 4ec32d0c2f..52614323bf 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/I4ufDqNrEj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/I4ufDqNrEj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/IB1StTHBRV.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/IB1StTHBRV.verified.txt index 8dacee1777..ce34030fac 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/IB1StTHBRV.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/IB1StTHBRV.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/KiSa1z2GlF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/KiSa1z2GlF.verified.txt index f726baaad0..ac706da57b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/KiSa1z2GlF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/KiSa1z2GlF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/KzA5jtGUkR.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/KzA5jtGUkR.verified.txt index a14fcd58f0..7447a8ed40 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/KzA5jtGUkR.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/KzA5jtGUkR.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/NSBfexk9Jx.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/NSBfexk9Jx.verified.txt index 06b8330841..a1af211d93 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/NSBfexk9Jx.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/NSBfexk9Jx.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/P0gu2bg1Qe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/P0gu2bg1Qe.verified.txt index bd30a4a611..272c88a043 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/P0gu2bg1Qe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/P0gu2bg1Qe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/PokjGcKPE1.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/PokjGcKPE1.verified.txt index 8a25a9fd31..7212b6d879 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/PokjGcKPE1.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/PokjGcKPE1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/RMtpAEyfS3.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/RMtpAEyfS3.verified.txt index 5e1d080236..0b253324b7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/RMtpAEyfS3.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/RMtpAEyfS3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/SVPyMplOJY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/SVPyMplOJY.verified.txt index ac3ee36e07..88069c6ed1 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/SVPyMplOJY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/SVPyMplOJY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/UFEoQsxK4b.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/UFEoQsxK4b.verified.txt index 208593a764..e7ced28953 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/UFEoQsxK4b.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/UFEoQsxK4b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/VLDltbmZEe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/VLDltbmZEe.verified.txt index 004c2af7f4..90d4c4d5ce 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/VLDltbmZEe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/VLDltbmZEe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/Y7OQFA2Vzd.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/Y7OQFA2Vzd.verified.txt index 1f159b5046..e81ecd7e93 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/Y7OQFA2Vzd.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/Y7OQFA2Vzd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/beUUeB1dtC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/beUUeB1dtC.verified.txt index f83fc34e1d..506e9f484f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/beUUeB1dtC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/beUUeB1dtC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/d0p84e4sx8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/d0p84e4sx8.verified.txt index 99ff483b73..2d00b5ecf5 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/d0p84e4sx8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/d0p84e4sx8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/e7wOU2uIU7.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/e7wOU2uIU7.verified.txt index a9e94b9e33..8fee07fe29 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/e7wOU2uIU7.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/e7wOU2uIU7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/e9DVdkW1mv.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/e9DVdkW1mv.verified.txt index 2f1459edda..adec950269 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/e9DVdkW1mv.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/e9DVdkW1mv.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/fWP2lfWLPk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/fWP2lfWLPk.verified.txt index 1f7c8a1f51..9ec3e402b7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/fWP2lfWLPk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/fWP2lfWLPk.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/gZv6qTriEZ.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/gZv6qTriEZ.verified.txt index bcfbc46ecd..4eceef12cb 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/gZv6qTriEZ.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/gZv6qTriEZ.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/gdSgCnvoLX.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/gdSgCnvoLX.verified.txt index 59e39e5fff..7ad69ba645 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/gdSgCnvoLX.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/gdSgCnvoLX.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/huJ2n43h1I.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/huJ2n43h1I.verified.txt index 0f9313aba8..b7bb7278a8 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/huJ2n43h1I.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/huJ2n43h1I.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/ixdKgjUJGb.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/ixdKgjUJGb.verified.txt index b558867a22..c26a12a288 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/ixdKgjUJGb.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/ixdKgjUJGb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/jw0eX5c7z8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/jw0eX5c7z8.verified.txt index 3bc493a2e2..6671a641b7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/jw0eX5c7z8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/jw0eX5c7z8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/kSPZoPlDl9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/kSPZoPlDl9.verified.txt index cb4d6974b0..7af2842199 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/kSPZoPlDl9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/kSPZoPlDl9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/lejpR8DQX0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/lejpR8DQX0.verified.txt index c0e4780650..09a90d304b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/lejpR8DQX0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/lejpR8DQX0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/orOucBh0pL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/orOucBh0pL.verified.txt index 1c51c9ca03..2502f88b25 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/orOucBh0pL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/orOucBh0pL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/oz0eD1nHou.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/oz0eD1nHou.verified.txt index faa8f71ed1..7a852eba5e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/oz0eD1nHou.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/oz0eD1nHou.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/pKThSIEAfM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/pKThSIEAfM.verified.txt index 7fb773490f..7da55446ae 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/pKThSIEAfM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/pKThSIEAfM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/pZ2MY5N3fO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/pZ2MY5N3fO.verified.txt index 043831055a..1805b46f5f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/pZ2MY5N3fO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/pZ2MY5N3fO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/piRD3s8PHK.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/piRD3s8PHK.verified.txt index 6c15d60944..0177084116 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/piRD3s8PHK.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/piRD3s8PHK.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/qZgPE8pch9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/qZgPE8pch9.verified.txt index 93d50c30f9..ae93860d4c 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/qZgPE8pch9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/qZgPE8pch9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/rLulWISFGT.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/rLulWISFGT.verified.txt index 52904256e3..5f4e124b06 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/rLulWISFGT.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/rLulWISFGT.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/tAEH8P36Jy.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/tAEH8P36Jy.verified.txt index cc8b96eabc..0ee22e6116 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/tAEH8P36Jy.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/tAEH8P36Jy.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/tttEZrgU5W.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/tttEZrgU5W.verified.txt index c757167f1c..8392edfbfb 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/tttEZrgU5W.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/tttEZrgU5W.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/v8SuB33vdj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/v8SuB33vdj.verified.txt index b62bd2fa7a..8c9be82f0f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/v8SuB33vdj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/v8SuB33vdj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/vIBGW2nFlB.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/vIBGW2nFlB.verified.txt index 1e0d4655d5..9d3ba4fcec 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/vIBGW2nFlB.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/vIBGW2nFlB.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/xnaJz0wDbM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/xnaJz0wDbM.verified.txt index 877929b721..85b74f79e9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/xnaJz0wDbM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/xnaJz0wDbM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/ygUZAPY2Vk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/ygUZAPY2Vk.verified.txt index b399863933..249bb93ed0 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/ygUZAPY2Vk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/ygUZAPY2Vk.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/zBAvbucpNY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/zBAvbucpNY.verified.txt index 55a43b7d98..f30c00d117 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/zBAvbucpNY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v7.0/zBAvbucpNY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/0AQJp5IDiC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/0AQJp5IDiC.verified.txt index 634f3a78b0..62394d452c 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/0AQJp5IDiC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/0AQJp5IDiC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/0TG0lh6tni.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/0TG0lh6tni.verified.txt index b049dfad54..5271a70d1a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/0TG0lh6tni.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/0TG0lh6tni.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/2KtBdBnyIY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/2KtBdBnyIY.verified.txt index 1990673dba..1793ca18cc 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/2KtBdBnyIY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/2KtBdBnyIY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/2XBv7DNqeD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/2XBv7DNqeD.verified.txt index ee2c0f131e..f0c8703888 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/2XBv7DNqeD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/2XBv7DNqeD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/3HXMKvfPVj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/3HXMKvfPVj.verified.txt index a2ecf4144d..8df5242427 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/3HXMKvfPVj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/3HXMKvfPVj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/4NZqTZQOzi.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/4NZqTZQOzi.verified.txt index 3e97b8e86d..6bc3a0437e 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/4NZqTZQOzi.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/4NZqTZQOzi.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/4betbAbMkf.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/4betbAbMkf.verified.txt index be263e8631..c248c35e7c 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/4betbAbMkf.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/4betbAbMkf.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/58Q396UffP.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/58Q396UffP.verified.txt index 776221f37d..3f245f90ec 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/58Q396UffP.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/58Q396UffP.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/5RPC2XJSen.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/5RPC2XJSen.verified.txt index 7c27226a9b..259bd8c5e0 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/5RPC2XJSen.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/5RPC2XJSen.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/60dOpSNvpD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/60dOpSNvpD.verified.txt index 022459684e..d378508d53 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/60dOpSNvpD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/60dOpSNvpD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/AFMcvpuumD.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/AFMcvpuumD.verified.txt index 5460e198d1..6f989f9574 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/AFMcvpuumD.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/AFMcvpuumD.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/AJWzuJoTcL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/AJWzuJoTcL.verified.txt index 0fa00ce48d..3c3a147a81 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/AJWzuJoTcL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/AJWzuJoTcL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/BbUYWGSZ7t.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/BbUYWGSZ7t.verified.txt index 6e6ef7047b..320d67ad99 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/BbUYWGSZ7t.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/BbUYWGSZ7t.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/C3aV5bGuhC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/C3aV5bGuhC.verified.txt index 94dbbf961a..a5186a4bff 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/C3aV5bGuhC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/C3aV5bGuhC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/E5VqeEIBNO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/E5VqeEIBNO.verified.txt index 6d63d33b08..2e51fa2c32 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/E5VqeEIBNO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/E5VqeEIBNO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/F9MZG1XNfF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/F9MZG1XNfF.verified.txt index a663401bea..179dc23c83 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/F9MZG1XNfF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/F9MZG1XNfF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/GHcjDwl5kc.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/GHcjDwl5kc.verified.txt index 46f12ca1a9..94709ad3d3 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/GHcjDwl5kc.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/GHcjDwl5kc.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/GiYPYYoVS0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/GiYPYYoVS0.verified.txt index 14b81576af..afc245c02b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/GiYPYYoVS0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/GiYPYYoVS0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbyte_customized left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/I4ufDqNrEj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/I4ufDqNrEj.verified.txt index 929ecd91f5..9c52452830 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/I4ufDqNrEj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/I4ufDqNrEj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/IB1StTHBRV.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/IB1StTHBRV.verified.txt index 8dacee1777..ce34030fac 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/IB1StTHBRV.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/IB1StTHBRV.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/KiSa1z2GlF.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/KiSa1z2GlF.verified.txt index f4c0be6c72..45371f0f95 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/KiSa1z2GlF.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/KiSa1z2GlF.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/KzA5jtGUkR.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/KzA5jtGUkR.verified.txt index a14fcd58f0..7447a8ed40 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/KzA5jtGUkR.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/KzA5jtGUkR.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/NSBfexk9Jx.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/NSBfexk9Jx.verified.txt index 6bff1d9b18..c9d9fc7880 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/NSBfexk9Jx.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/NSBfexk9Jx.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/P0gu2bg1Qe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/P0gu2bg1Qe.verified.txt index 112b0ab3c9..465c2ff5d2 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/P0gu2bg1Qe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/P0gu2bg1Qe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong_customized left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/PokjGcKPE1.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/PokjGcKPE1.verified.txt index 8a25a9fd31..7212b6d879 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/PokjGcKPE1.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/PokjGcKPE1.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/RMtpAEyfS3.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/RMtpAEyfS3.verified.txt index 5e1d080236..0b253324b7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/RMtpAEyfS3.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/RMtpAEyfS3.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/SVPyMplOJY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/SVPyMplOJY.verified.txt index ac3ee36e07..88069c6ed1 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/SVPyMplOJY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/SVPyMplOJY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/UFEoQsxK4b.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/UFEoQsxK4b.verified.txt index 0a32738d21..62deb6cf4a 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/UFEoQsxK4b.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/UFEoQsxK4b.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/VLDltbmZEe.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/VLDltbmZEe.verified.txt index 2e8c230e4c..6aefe12e28 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/VLDltbmZEe.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/VLDltbmZEe.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/Y7OQFA2Vzd.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/Y7OQFA2Vzd.verified.txt index baa52018c1..3faf7a7380 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/Y7OQFA2Vzd.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/Y7OQFA2Vzd.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/beUUeB1dtC.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/beUUeB1dtC.verified.txt index f83fc34e1d..506e9f484f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/beUUeB1dtC.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/beUUeB1dtC.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_Guid left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/d0p84e4sx8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/d0p84e4sx8.verified.txt index 99ff483b73..2d00b5ecf5 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/d0p84e4sx8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/d0p84e4sx8.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/e7wOU2uIU7.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/e7wOU2uIU7.verified.txt index a9e94b9e33..8fee07fe29 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/e7wOU2uIU7.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/e7wOU2uIU7.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbool_customized left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/e9DVdkW1mv.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/e9DVdkW1mv.verified.txt index 138b5a29e3..df23ab55f9 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/e9DVdkW1mv.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/e9DVdkW1mv.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondouble_customized left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/fWP2lfWLPk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/fWP2lfWLPk.verified.txt index 1f7c8a1f51..9ec3e402b7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/fWP2lfWLPk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/fWP2lfWLPk.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_Guid_customized left, System.Guid right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/gZv6qTriEZ.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/gZv6qTriEZ.verified.txt index bcfbc46ecd..4eceef12cb 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/gZv6qTriEZ.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/gZv6qTriEZ.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/gdSgCnvoLX.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/gdSgCnvoLX.verified.txt index 59e39e5fff..7ad69ba645 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/gdSgCnvoLX.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/gdSgCnvoLX.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/huJ2n43h1I.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/huJ2n43h1I.verified.txt index eb8de55d3d..4869553a2f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/huJ2n43h1I.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/huJ2n43h1I.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonfloat_customized left, System.Single right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/ixdKgjUJGb.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/ixdKgjUJGb.verified.txt index ff6b1db20a..4b781688bf 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/ixdKgjUJGb.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/ixdKgjUJGb.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonshort_customized left, System.Int16 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/jw0eX5c7z8.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/jw0eX5c7z8.verified.txt index 3bc493a2e2..6671a641b7 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/jw0eX5c7z8.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/jw0eX5c7z8.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/kSPZoPlDl9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/kSPZoPlDl9.verified.txt index cb4d6974b0..7af2842199 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/kSPZoPlDl9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/kSPZoPlDl9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTime_customized left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/lejpR8DQX0.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/lejpR8DQX0.verified.txt index c0e4780650..09a90d304b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/lejpR8DQX0.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/lejpR8DQX0.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonbool left, System.Boolean right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/orOucBh0pL.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/orOucBh0pL.verified.txt index 1c51c9ca03..2502f88b25 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/orOucBh0pL.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/orOucBh0pL.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonchar_customized left, System.Char right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/oz0eD1nHou.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/oz0eD1nHou.verified.txt index cc9ed90af7..e9e8940817 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/oz0eD1nHou.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/oz0eD1nHou.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJson_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/pKThSIEAfM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/pKThSIEAfM.verified.txt index 81fdff5e82..70e44fd651 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/pKThSIEAfM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/pKThSIEAfM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsondouble && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsondouble)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, stj_number_as_string_public_partial_structConversions_SystemTextJsondouble right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsondouble left, System.Double right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/pZ2MY5N3fO.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/pZ2MY5N3fO.verified.txt index d0555451f4..99766874bf 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/pZ2MY5N3fO.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/pZ2MY5N3fO.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonlong left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/piRD3s8PHK.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/piRD3s8PHK.verified.txt index 6c15d60944..0177084116 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/piRD3s8PHK.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/piRD3s8PHK.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/qZgPE8pch9.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/qZgPE8pch9.verified.txt index fd42d7a47b..0f28109645 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/qZgPE8pch9.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/qZgPE8pch9.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/rLulWISFGT.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/rLulWISFGT.verified.txt index d235217830..8247d6fd59 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/rLulWISFGT.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/rLulWISFGT.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonbyte left, System.Byte right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/tAEH8P36Jy.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/tAEH8P36Jy.verified.txt index 6314ba342f..76b347c60d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/tAEH8P36Jy.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/tAEH8P36Jy.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonint left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/tttEZrgU5W.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/tttEZrgU5W.verified.txt index b35c0900c9..515d40359d 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/tttEZrgU5W.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/tttEZrgU5W.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsondecimal_customized left, System.Decimal right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/v8SuB33vdj.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/v8SuB33vdj.verified.txt index b62bd2fa7a..8c9be82f0f 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/v8SuB33vdj.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/v8SuB33vdj.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonSystem_DateTimeOffset_customized left, System.DateTimeOffset right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/vIBGW2nFlB.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/vIBGW2nFlB.verified.txt index 1e0d4655d5..9d3ba4fcec 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/vIBGW2nFlB.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/vIBGW2nFlB.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonSystem_DateTime left, System.DateTime right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/xnaJz0wDbM.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/xnaJz0wDbM.verified.txt index e3bdd2111d..f166443725 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/xnaJz0wDbM.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/xnaJz0wDbM.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJson && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJson)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, stj_number_as_string_public_partial_structConversions_SystemTextJson right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJson left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/ygUZAPY2Vk.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/ygUZAPY2Vk.verified.txt index b399863933..249bb93ed0 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/ygUZAPY2Vk.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/ygUZAPY2Vk.verified.txt @@ -198,7 +198,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized && Equals((stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_readonly_partial_structConversions_SystemTextJsonstring_customized left, System.String right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/zBAvbucpNY.verified.txt b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/zBAvbucpNY.verified.txt index 34b4a594b4..60937c071b 100644 --- a/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/zBAvbucpNY.verified.txt +++ b/tests/SnapshotTests/SystemTextJsonGeneration/snapshots/snap-v8.0/zBAvbucpNY.verified.txt @@ -193,7 +193,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized && Equals((stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized)obj); } - public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => Equals(left, right); + public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => left.Equals(right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized right) => !(left == right); public static global::System.Boolean operator ==(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(stj_number_as_string_public_partial_structConversions_SystemTextJsonint_customized left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_ExpressionBodiedMethod.verified.txt index 08ffa08cb4..7741088d95 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_ExpressionBodiedMethod && Equals((partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_Method.verified.txt index e5faf46b64..dbe358d2a4 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_Method && Equals((partial_struct_Method)obj); } - public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_Method left, partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_None.verified.txt index 68fe76c83a..c6e8ec9c44 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_None && Equals((partial_struct_None)obj); } - public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_None left, partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_ExpressionBodiedMethod.verified.txt index 67aa006e08..89681f1620 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_ExpressionBodiedMethod && Equals((readonly_partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_Method.verified.txt index 78a07b9a5f..4862038a92 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_Method && Equals((readonly_partial_struct_Method)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_None.verified.txt index b3af917670..5376889575 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v3.1/readonly_partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_None && Equals((readonly_partial_struct_None)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, readonly_partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_ExpressionBodiedMethod.verified.txt index b7bebfea06..b9ea966cf7 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_ExpressionBodiedMethod && Equals((partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_Method.verified.txt index 459e4b3be8..6998f3babc 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_Method && Equals((partial_struct_Method)obj); } - public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_Method left, partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_None.verified.txt index 9ea2139de3..ad6dce0d3f 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_None && Equals((partial_struct_None)obj); } - public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_None left, partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_ExpressionBodiedMethod.verified.txt index f31f8a5baf..694a494505 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_ExpressionBodiedMethod && Equals((readonly_partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_Method.verified.txt index 931016af4c..e2895be870 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_Method && Equals((readonly_partial_struct_Method)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_None.verified.txt index a1dfaa1884..9ec56168c3 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.6.1/readonly_partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_None && Equals((readonly_partial_struct_None)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, readonly_partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_ExpressionBodiedMethod.verified.txt index 6b6c2de143..71594cca34 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_ExpressionBodiedMethod && Equals((partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_Method.verified.txt index 3886a969cc..a5df3bc0ed 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_Method && Equals((partial_struct_Method)obj); } - public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_Method left, partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_None.verified.txt index e4ee666923..0f48db92f4 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_None && Equals((partial_struct_None)obj); } - public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_None left, partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_ExpressionBodiedMethod.verified.txt index db9ac4497c..da1a63e976 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_ExpressionBodiedMethod && Equals((readonly_partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_Method.verified.txt index 32b40efc5b..8bf0cfecad 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_Method && Equals((readonly_partial_struct_Method)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_None.verified.txt index 2214af1628..d87e04d0fa 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v4.8/readonly_partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_None && Equals((readonly_partial_struct_None)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, readonly_partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_ExpressionBodiedMethod.verified.txt index 08ffa08cb4..7741088d95 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_ExpressionBodiedMethod && Equals((partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_Method.verified.txt index e5faf46b64..dbe358d2a4 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_Method && Equals((partial_struct_Method)obj); } - public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_Method left, partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_None.verified.txt index 68fe76c83a..c6e8ec9c44 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_None && Equals((partial_struct_None)obj); } - public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_None left, partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt index 67aa006e08..89681f1620 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_ExpressionBodiedMethod && Equals((readonly_partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_Method.verified.txt index 78a07b9a5f..4862038a92 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_Method && Equals((readonly_partial_struct_Method)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_None.verified.txt index b3af917670..5376889575 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v5.0/readonly_partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_None && Equals((readonly_partial_struct_None)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, readonly_partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_ExpressionBodiedMethod.verified.txt index 08ffa08cb4..7741088d95 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_ExpressionBodiedMethod && Equals((partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_Method.verified.txt index e5faf46b64..dbe358d2a4 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_Method && Equals((partial_struct_Method)obj); } - public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_Method left, partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_None.verified.txt index 68fe76c83a..c6e8ec9c44 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_None && Equals((partial_struct_None)obj); } - public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_None left, partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt index 67aa006e08..89681f1620 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_ExpressionBodiedMethod && Equals((readonly_partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_Method.verified.txt index 78a07b9a5f..4862038a92 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_Method && Equals((readonly_partial_struct_Method)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_None.verified.txt index b3af917670..5376889575 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v6.0/readonly_partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_None && Equals((readonly_partial_struct_None)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, readonly_partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_ExpressionBodiedMethod.verified.txt index 6b9ea3f1e1..fa0b396339 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_ExpressionBodiedMethod && Equals((partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_Method.verified.txt index 2f2e7e5a96..6b17744a22 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_Method && Equals((partial_struct_Method)obj); } - public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_Method left, partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_None.verified.txt index ba89a5a3a5..2d257f8f44 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_None && Equals((partial_struct_None)obj); } - public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_None left, partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt index 3a5f3a7004..427d0291b2 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_ExpressionBodiedMethod && Equals((readonly_partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_Method.verified.txt index 42442ca7e4..b18aad54b9 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_Method && Equals((readonly_partial_struct_Method)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_None.verified.txt index f172aef6c8..c03d281f2e 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v7.0/readonly_partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_None && Equals((readonly_partial_struct_None)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, readonly_partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_ExpressionBodiedMethod.verified.txt index ba143f7775..a56363216d 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_ExpressionBodiedMethod && Equals((partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_Method.verified.txt index 76450c25e0..a2140c05e0 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_Method && Equals((partial_struct_Method)obj); } - public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_Method left, partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_Method left, partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_None.verified.txt index f854e6f297..2735c7ecbb 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is partial_struct_None && Equals((partial_struct_None)obj); } - public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(partial_struct_None left, partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(partial_struct_None left, partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt index fdff41df00..3936566901 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_ExpressionBodiedMethod.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_ExpressionBodiedMethod && Equals((readonly_partial_struct_ExpressionBodiedMethod)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, readonly_partial_struct_ExpressionBodiedMethod right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_ExpressionBodiedMethod left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_Method.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_Method.verified.txt index 2625e99ede..7407972167 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_Method.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_Method.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_Method && Equals((readonly_partial_struct_Method)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, readonly_partial_struct_Method right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_Method left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_Method left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_None.verified.txt b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_None.verified.txt index 0acf63157a..a6848385f7 100644 --- a/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_None.verified.txt +++ b/tests/SnapshotTests/ToString/snapshots/snap-v8.0/readonly_partial_struct_None.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is readonly_partial_struct_None && Equals((readonly_partial_struct_None)obj); } - public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => Equals(left, right); + public static global::System.Boolean operator ==(readonly_partial_struct_None left, readonly_partial_struct_None right) => left.Equals(right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, readonly_partial_struct_None right) => !(left == right); public static global::System.Boolean operator ==(readonly_partial_struct_None left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(readonly_partial_struct_None left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Instance_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Instance_names_can_have_reserved_keywords.verified.txt index c175b0ce5b..beb8f805e6 100644 --- a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Instance_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Instance_names_can_have_reserved_keywords.verified.txt @@ -232,7 +232,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Namespace_names_can_have_reserved_keywords.verified.txt b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Namespace_names_can_have_reserved_keywords.verified.txt index bd35b57647..d672a4ffc6 100644 --- a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Namespace_names_can_have_reserved_keywords.verified.txt +++ b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Namespace_names_can_have_reserved_keywords.verified.txt @@ -234,7 +234,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is @class && Equals((@class)obj); } - public static global::System.Boolean operator ==(@class left, @class right) => Equals(left, right); + public static global::System.Boolean operator ==(@class left, @class right) => left.Equals(right); public static global::System.Boolean operator !=(@class left, @class right) => !(left == right); public static global::System.Boolean operator ==(@class left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(@class left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.No_namespace.verified.txt b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.No_namespace.verified.txt index b559d7d343..b24718ff68 100644 --- a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.No_namespace.verified.txt +++ b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.No_namespace.verified.txt @@ -192,7 +192,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Partial_struct_created_successfully.verified.txt b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Partial_struct_created_successfully.verified.txt index 817bdc32b2..13f4481720 100644 --- a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Partial_struct_created_successfully.verified.txt +++ b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Partial_struct_created_successfully.verified.txt @@ -194,7 +194,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Produces_instances.verified.txt b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Produces_instances.verified.txt index d77198df4f..107ef4ae2c 100644 --- a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Produces_instances.verified.txt +++ b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Produces_instances.verified.txt @@ -204,7 +204,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Produces_instances_with_derived_attribute.verified.txt b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Produces_instances_with_derived_attribute.verified.txt index c4a8f59506..5fcc94510f 100644 --- a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Produces_instances_with_derived_attribute.verified.txt +++ b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Produces_instances_with_derived_attribute.verified.txt @@ -204,7 +204,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int64 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int64 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Validation_with_PascalCased_validate_method.verified.txt b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Validation_with_PascalCased_validate_method.verified.txt index e8c0d7d2bd..37800c883c 100644 --- a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Validation_with_PascalCased_validate_method.verified.txt +++ b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Validation_with_PascalCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right); diff --git a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Validation_with_camelCased_validate_method.verified.txt b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Validation_with_camelCased_validate_method.verified.txt index 544bc2d512..87712cf46c 100644 --- a/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Validation_with_camelCased_validate_method.verified.txt +++ b/tests/SnapshotTests/snapshots/snap-v7.0/GenericAttributeTests.Validation_with_camelCased_validate_method.verified.txt @@ -228,7 +228,7 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null; return obj is CustomerId && Equals((CustomerId)obj); } - public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => Equals(left, right); + public static global::System.Boolean operator ==(CustomerId left, CustomerId right) => left.Equals(right); public static global::System.Boolean operator !=(CustomerId left, CustomerId right) => !(left == right); public static global::System.Boolean operator ==(CustomerId left, System.Int32 right) => Equals(left.Value, right); public static global::System.Boolean operator !=(CustomerId left, System.Int32 right) => !Equals(left.Value, right);